diff options
Diffstat (limited to 'stdlib/tst-putenv.c')
-rw-r--r-- | stdlib/tst-putenv.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/stdlib/tst-putenv.c b/stdlib/tst-putenv.c deleted file mode 100644 index 47513ea42b..0000000000 --- a/stdlib/tst-putenv.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> - -static int -do_test (void) -{ - char *p = getenv ("SOMETHING_NOBODY_USES"); - if (p == NULL) - { - puts ("envvar not defined"); - return 1; - } - - return 0; -} - -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" |