blob: 62ebc201f5fb8e08868ea1c15d64d44637e75e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _BSD_SETENV_H
#define _BSD_SETENV_H
#include "config.h"
#ifndef HAVE_SETENV
int setenv(register const char *name, register const char *value, int rewrite);
#endif /* !HAVE_SETENV */
#endif /* _BSD_SETENV_H */
|