aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-05-27 09:21:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-05-27 09:21:47 +1200
commit8ac491ed7e742e89924f13ca049147576515fe12 (patch)
treef2148d664d9f60f4c74f41e1f1d21d7d8b9bad29
parentUse implicit NULL tests (diff)
downloadtunics-8ac491ed7e742e89924f13ca049147576515fe12.tar.gz
tunics-8ac491ed7e742e89924f13ca049147576515fe12.zip
Remove varnames from func protos
-rw-r--r--sort.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sort.h b/sort.h
index 264e905..b63dcb3 100644
--- a/sort.h
+++ b/sort.h
@@ -13,10 +13,10 @@ typedef struct {
char **data;
} vec;
-char *read_line(FILE* stream);
+char *read_line(FILE*);
vec *vec_init(void);
-void vec_add(vec *v, char *s);
-void vec_free(vec *v);
-static int qsort_strcmp(const void *p1, const void *p2);
+void vec_add(vec*, char*);
+void vec_free(vec*);
+static int qsort_strcmp(const void*, const void*);
#endif