diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-03-05 18:32:41 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-03-05 18:32:41 +1300 |
commit | 97981f11f28fef88b9fc9428b53a30ebedd5c180 (patch) | |
tree | dd48689cdcdfbb525aa065d160a8edd5d464b064 | |
parent | Trying out some extra C warnings (diff) | |
download | spsh-97981f11f28fef88b9fc9428b53a30ebedd5c180.tar.gz spsh-97981f11f28fef88b9fc9428b53a30ebedd5c180.zip |
Correct prototype with void arg
-rw-r--r-- | spsh.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |