summary refs log tree commit diff
path: root/stdlib/tst-putenvmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/tst-putenvmod.c')
-rw-r--r--stdlib/tst-putenvmod.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/stdlib/tst-putenvmod.c b/stdlib/tst-putenvmod.c
deleted file mode 100644
index 7c0c337d3f..0000000000
--- a/stdlib/tst-putenvmod.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-
-void
-__attribute ((constructor))
-init (void)
-{
-  puts ("init DSO");
-
-  static char str[] = "SOMETHING_NOBODY_USES=something_else";
-  if (putenv (str) != 0)
-    {
-      puts ("putenv failed");
-      _exit (1);
-    }
-}