aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-05 18:32:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-05 18:32:41 +1300
commit97981f11f28fef88b9fc9428b53a30ebedd5c180 (patch)
treedd48689cdcdfbb525aa065d160a8edd5d464b064
parentTrying out some extra C warnings (diff)
downloadspsh-97981f11f28fef88b9fc9428b53a30ebedd5c180.tar.gz
spsh-97981f11f28fef88b9fc9428b53a30ebedd5c180.zip
Correct prototype with void arg
-rw-r--r--spsh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/spsh.h b/spsh.h
index e915fea..b3c1676 100644
--- a/spsh.h
+++ b/spsh.h
@@ -28,8 +28,8 @@
extern char **environ;
/* Function prototypes to soothe separate files */
-void banner();
-void loop();
+void banner(void);
+void loop(void);
void cmd(char *line);
#endif