diff options
Diffstat (limited to 'stdlib/system.c')
-rw-r--r-- | stdlib/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/system.c b/stdlib/system.c index f3dbe50c64..c4a4a90081 100644 --- a/stdlib/system.c +++ b/stdlib/system.c @@ -21,8 +21,7 @@ /* Execute LINE as a shell command. */ int -__libc_system (line) - const char *line; +__libc_system (const char *line) { if (line == NULL) return 0; /* This indicates no command processor. */ |