summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-01-26 14:27:25 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-01-26 14:27:25 +1300
commit739f6d1b318e42f908dcc51870209b4c61cd5558 (patch)
tree38e0118cea9a0c4c42603562363fd96241353cff
parentCount through argv so we don't edit it in place (diff)
downloadfuncptr-739f6d1b318e42f908dcc51870209b4c61cd5558.tar.gz
funcptr-739f6d1b318e42f908dcc51870209b4c61cd5558.zip
Remove unneeded name from prototype
-rw-r--r--funcptr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcptr.c b/funcptr.c
index 19f2eb6..adeb21c 100644
--- a/funcptr.c
+++ b/funcptr.c
@@ -4,7 +4,7 @@
int doub(int);
int trip(int);
int half(int);
-void fpv_exec(int (**fpv)(int), int n);
+void fpv_exec(int (**)(int), int);
int doub(int i) {
return i * 2;