10 lines
96 B
C
10 lines
96 B
C
#include <stdlib.h>
|
|
|
|
extern char **__environ;
|
|
|
|
int clearenv()
|
|
{
|
|
__environ[0] = 0;
|
|
return 0;
|
|
}
|