diff options
Diffstat (limited to 'src/stdlib/putenv.c')
| -rw-r--r-- | src/stdlib/putenv.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdlib/putenv.c b/src/stdlib/putenv.c new file mode 100644 index 00000000..471712e7 --- /dev/null +++ b/src/stdlib/putenv.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +int putenv(char * string) +{ + return 0; +} + +/* +XOPEN(4) +*/ |
