Mercurial > hg > octave-lojdl > gnulib-hg
changeset 575:7297a50f1148
.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Mon, 01 Apr 1996 00:16:11 +0000 |
parents | d5454df4c7e2 |
children | 877cb3985712 |
files | lib/setenv.h |
diffstat | 1 files changed, 17 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/lib/setenv.h @@ -0,0 +1,17 @@ +#ifndef SETENV_H +#define SETENV_H 1 + +#undef __P +#if defined (__STDC__) && __STDC__ +#define __P(x) x +#else +#define __P(x) () +#endif + +int + setenv __P ((const char *name, const char *value, int replace)); + +void + unsetenv __P ((const char *name)); + +#endif /* SETENV_H */