Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
e0cdf93476a03c3c6411571088ca16762a15e9c5
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
stdlib
/
tst-unsetenv1.c
blob: a2a760d2418d8aceef81a61cc639c97e4d707d71 [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
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"