aboutsummaryrefslogtreecommitdiff
path: root/banner.c
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-07 11:01:21 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-07 11:01:21 +1300
commit702713622414ea2ffdc6909d9fe396b4dbb2eeec (patch)
treec09390d54455eded8dcd14064b7a2e962d759877 /banner.c
parentSwitching to clang (diff)
downloadspsh-702713622414ea2ffdc6909d9fe396b4dbb2eeec.tar.gz
spsh-702713622414ea2ffdc6909d9fe396b4dbb2eeec.zip
Explicitly specify void-arg funcs
Diffstat (limited to 'banner.c')
-rw-r--r--banner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/banner.c b/banner.c
index ae23904..6a33008 100644
--- a/banner.c
+++ b/banner.c
@@ -1,7 +1,7 @@
#include "spsh.h"
/* Print the welcome and warning banners */
-void banner() {
+void banner(void) {
fprintf(stdout, "%s\n", WELCOME);
fprintf(stdout, "%s\n", WARNING);
return;