diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-01-26 14:27:25 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-01-26 14:27:25 +1300 |
commit | 739f6d1b318e42f908dcc51870209b4c61cd5558 (patch) | |
tree | 38e0118cea9a0c4c42603562363fd96241353cff | |
parent | Count through argv so we don't edit it in place (diff) | |
download | funcptr-739f6d1b318e42f908dcc51870209b4c61cd5558.tar.gz funcptr-739f6d1b318e42f908dcc51870209b4c61cd5558.zip |
Remove unneeded name from prototype
-rw-r--r-- | funcptr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |