.
authorJim Meyering <jim@meyering.net>
Mon, 1 Apr 1996 00:16:11 +0000 (00:16 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 1 Apr 1996 00:16:11 +0000 (00:16 +0000)
lib/setenv.h [new file with mode: 0644]

diff --git a/lib/setenv.h b/lib/setenv.h
new file mode 100644 (file)
index 0000000..932a852
--- /dev/null
@@ -0,0 +1,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 */