projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
692c4b6
)
.
author
Jim Meyering
<jim@meyering.net>
Mon, 1 Apr 1996 00:16:11 +0000
(
00:16
+0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 1 Apr 1996 00:16:11 +0000
(
00:16
+0000)
lib/setenv.h
[new file with mode: 0644]
patch
|
blob
diff --git a/lib/setenv.h
b/lib/setenv.h
new file mode 100644
(file)
index 0000000..
932a852
--- /dev/null
+++ b/
lib/setenv.h
@@ -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 */