summaryrefslogtreecommitdiff
path: root/lib/setenv.h
blob: 54d7963c1d0dff6b37b27410b2958497f3e03315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 */