aboutsummaryrefslogtreecommitdiff
path: root/src/env/putenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/env/putenv.c')
-rw-r--r--src/env/putenv.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/env/putenv.c b/src/env/putenv.c
index dce8c828..a0b1ef8d 100644
--- a/src/env/putenv.c
+++ b/src/env/putenv.c
@@ -44,3 +44,11 @@ int putenv(char *s)
if (!l || !s[l]) return unsetenv(s);
return __putenv(s, l, 0);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif