diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-01-26 14:27:34 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-01-26 14:27:34 +1300 |
commit | 0b11884cf63aea814f3a6c1c9ce61ef8ddeaf372 (patch) | |
tree | 210a0abc8e9ae4ab9308bc72589d7db50eaf718b /funcptr.c | |
parent | Remove unneeded name from prototype (diff) | |
download | funcptr-0b11884cf63aea814f3a6c1c9ce61ef8ddeaf372.tar.gz funcptr-0b11884cf63aea814f3a6c1c9ce61ef8ddeaf372.zip |
Add declaration for static int
Diffstat (limited to 'funcptr.c')
-rw-r--r-- | funcptr.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ int doub(int); int trip(int); int half(int); +static int (*fpv[])(int); void fpv_exec(int (**)(int), int); int doub(int i) { |