2
0
mirror of git://sourceware.org/git/glibc.git synced 2025-04-18 14:30:43 +08:00
glibc/stdlib/tst-unsetenv1.c

13 lines
162 B
C
Raw Permalink Normal View History

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