1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-27 09:35:58 +02:00
Files
coreutils/lib/setenv.h
Jim Meyering 651e543fd6 .
1996-04-01 00:16:11 +00:00

18 lines
269 B
C

#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 */