1 2 3 4 5 6 7 8 9
#include <stdlib.h> extern char **__environ; int clearenv() { __environ[0] = 0; return 0; }