source: trunk/sys/dietlibc/unsetenv.c @ 138

Last change on this file since 138 was 1, checked in by alain, 7 years ago

First import

File size: 87 bytes
Line 
1#include <stdlib.h>
2
3int unsetenv(const char *name) {
4  return putenv((char*)name);
5}
6
Note: See TracBrowser for help on using the repository browser.