summaryrefslogtreecommitdiff
path: root/src/sleep.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-11-12 04:14:54 +0000
committerJim Meyering <jim@meyering.net>1992-11-12 04:14:54 +0000
commit88b70560464afbc44c6233abbb7375fd5c464124 (patch)
tree8cd20ebb560f9ec40e0c17474f507adb5269a8c3 /src/sleep.c
parent5fc2263354892487337ab870520c9b682e8a893e (diff)
downloadcoreutils-88b70560464afbc44c6233abbb7375fd5c464124.tar.xz
all files: make most variables static and const when possible.
declare lots of functions static.
Diffstat (limited to 'src/sleep.c')
-rw-r--r--src/sleep.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sleep.c b/src/sleep.c
index 7212ba54f..1551eeaa8 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -19,9 +19,10 @@
#include <sys/types.h>
#include "system.h"
-long argdecode ();
void error ();
+static long argdecode ();
+
/* The name by which this program was run. */
char *program_name;
@@ -49,7 +50,7 @@ main (argc, argv)
exit (0);
}
-long
+static long
argdecode (s)
char *s;
{