remove all .size and .type directives for functions from the asm
[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 }