diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-11 04:26:28 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-12-11 04:26:28 +0000 |
commit | 673cd96996e03c3b8f132d152d3f281893858cdb (patch) | |
tree | 18e414431f669e5f2de08470da90a9071fa9926d /shell | |
parent | 90f3962ee748a48615cd11119d6f81a6d10b5b7d (diff) | |
download | busybox-w32-673cd96996e03c3b8f132d152d3f281893858cdb.tar.gz busybox-w32-673cd96996e03c3b8f132d152d3f281893858cdb.tar.bz2 busybox-w32-673cd96996e03c3b8f132d152d3f281893858cdb.zip |
Squash a warning by making function declaration a proper prototype
git-svn-id: svn://busybox.net/trunk/busybox@6164 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/lash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c index c4d6ef04e..35929898e 100644 --- a/shell/lash.c +++ b/shell/lash.c | |||
@@ -1532,7 +1532,7 @@ void free_memory(void) | |||
1532 | /* Make sure we have a controlling tty. If we get started under a job | 1532 | /* Make sure we have a controlling tty. If we get started under a job |
1533 | * aware app (like bash for example), make sure we are now in charge so | 1533 | * aware app (like bash for example), make sure we are now in charge so |
1534 | * we don't fight over who gets the foreground */ | 1534 | * we don't fight over who gets the foreground */ |
1535 | static void setup_job_control() | 1535 | static void setup_job_control(void) |
1536 | { | 1536 | { |
1537 | int status; | 1537 | int status; |
1538 | 1538 | ||