summaryrefslogtreecommitdiff
path: root/bsd-setenv.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-26 12:12:34 +1000
committerDamien Miller <djm@mindrot.org>2000-03-26 12:12:34 +1000
commit2c9279fa667827384fceb243f890cba1dbe480de (patch)
treef1fad5fec82c219ca8d73006bb1d4181ad039d92 /bsd-setenv.h
parenta208e57269c44761209434f06f980600a9a82fb9 (diff)
- Better tests for OpenSSL w/ RSAref
- Added replacement setenv() function from OpenBSD libc. Suggested by Ben Lindstrom <mouring@pconline.com>
Diffstat (limited to 'bsd-setenv.h')
-rw-r--r--bsd-setenv.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/bsd-setenv.h b/bsd-setenv.h
new file mode 100644
index 000000000..62ebc201f
--- /dev/null
+++ b/bsd-setenv.h
@@ -0,0 +1,12 @@
1#ifndef _BSD_SETENV_H
2#define _BSD_SETENV_H
3
4#include "config.h"
5
6#ifndef HAVE_SETENV
7
8int setenv(register const char *name, register const char *value, int rewrite);
9
10#endif /* !HAVE_SETENV */
11
12#endif /* _BSD_SETENV_H */