mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-02 22:44:44 +08:00
18 lines
278 B
C
18 lines
278 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 */
|