glibc/stdlib/tst-unsetenv1.c
Ulrich Drepper 30c063710e * stdlib/Makefile (tests): Add tst-unsetenv1.
* stdlib/tst-unsetenv1.c: New file.
2008-12-02 02:27:43 +00:00

13 lines
162 B
C

#include <stdlib.h>
static int
do_test (void)
{
clearenv ();
unsetenv ("FOO");
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"