diff options
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r-- | newlib/libc/stdlib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/system.c b/newlib/libc/stdlib/system.c index cc12411e3..73c0540d9 100644 --- a/newlib/libc/stdlib/system.c +++ b/newlib/libc/stdlib/system.c @@ -81,7 +81,7 @@ _system_r (ptr, s) For now we always return 0 and leave it to each target to explicitly handle otherwise (this can always be relaxed in the future). */ -#if defined (unix) || defined (__CYGWIN32__) +#if defined (unix) || defined (__CYGWIN__) if (s == NULL) return 1; return do_system (ptr, s); |