crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[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 }