Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/putenv.c')
-rw-r--r--newlib/libc/stdlib/putenv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/putenv.c b/newlib/libc/stdlib/putenv.c
index 978f7c5d6..7a8d7f7d3 100644
--- a/newlib/libc/stdlib/putenv.c
+++ b/newlib/libc/stdlib/putenv.c
@@ -23,8 +23,7 @@
#include <string.h>
int
-_DEFUN (putenv, (str),
- char *str)
+putenv (char *str)
{
return _putenv_r (_REENT, str);
}