Sign in
mojo
/
mojo-tools
/
751f4d3c32cbd11f0bfd44c5facf6c62173310bf
/
.
/
fusl
/
src
/
env
/
clearenv.c
blob: 62d50952dabffc7a8931266cc3fb56f6e4b25cfd [
file
]
#define
_GNU_SOURCE
#include
<stdlib.h>
extern
char
**
__environ
;
int
clearenv
()
{
__environ
[
0
]
=
0
;
return
0
;
}