add more of the locale_t interfaces, all dummied out to ignore the locale
[musl] / src / env / clearenv.c
1 #include <stdlib.h>
2
3 extern char **__environ;
4
5 int clearenv()
6 {
7         __environ[0] = 0;
8         return 0;
9 }