projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
* stdlib/Makefile (tests): Add tst-unsetenv1.
[platform/upstream/glibc.git]
/
stdlib
/
tst-unsetenv1.c
1
#include <stdlib.h>
2
3
static int
4
do_test (void)
5
{
6
clearenv ();
7
unsetenv ("FOO");
8
return 0;
9
}
10
11
#define TEST_FUNCTION do_test ()
12
#include "../test-skeleton.c"