Files
llgo/c/os/_os/os.c

10 lines
125 B
C
Raw Normal View History

#include <stdlib.h>
2024-08-04 10:54:41 +08:00
int llgoClearenv() {
extern char **environ;
if (environ != NULL) {
*environ = NULL;
}
return 0;
}