1 /*
2  * reimplementation of Daniel Bernstein's unix library.
3  * placed in the public domain by Uwe Ohse, uwe@ohse.de.
4  */
5 #ifndef ENV_H
6 #define ENV_H
7 
8 extern char **environ;
9 char *env_get(const char *var);
10 
11 #endif
12