Gitiles
Code Review
Sign In
192.168.1.100
/
7520V3V
/
bfc6e71ee409bcae7f7b6850f4ebfbd3091c5851
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
stdlib
/
tst-unsetenv1.c
blob: a2a760d2418d8aceef81a61cc639c97e4d707d71 [
file
] [
log
] [
blame
]
xf.li
bfc6e71
2025-02-07 01:54:34 -0800
[
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"