fixed unsetenv prototype to match posix standard

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4194 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2003-08-02 04:55:14 +00:00
parent 99a35090bd
commit 7626aaf1a5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ extern char **environ;
extern char *getenv(const char *name);
extern int putenv(const char *string);
extern int setenv(char const *name, char const *value, int rewrite);
extern void unsetenv(const char *name);
extern int unsetenv(const char *name);
/* ASCII string to number conversion */
extern double atof(const char *string);