repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Refer to C23 in place of C2X in glibc
[glibc.git]
/
stdlib
/
tst-unsetenv1.c
blob
a2a760d2418d8aceef81a61cc639c97e4d707d71
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"