diff options
author | powwow@askgustav.com <powwow@askgustav.com> | 2019-03-18 23:05:26 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2019-04-23 20:37:05 (GMT) |
commit | 304a722c426f47a461dc88c4493f800c0690b29b (patch) | |
tree | 151b974354c0c7ec4e89649a949db32f11b56442 /map.h | |
parent | 7db984561ef8fd0ff9165288324dbc81516113f0 (diff) | |
download | powwow-304a722c426f47a461dc88c4493f800c0690b29b.zip powwow-304a722c426f47a461dc88c4493f800c0690b29b.tar.gz powwow-304a722c426f47a461dc88c4493f800c0690b29b.tar.bz2 |
remove some non-ANSI C support
Diffstat (limited to 'map.h')
-rw-r--r-- | map.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3,13 +3,13 @@ #ifndef _MAP_H_ #define _MAP_H_ -void map_bootstrap __P ((void)); +void map_bootstrap(void); -void map_retrace __P ((int steps, int walk_back)); -void map_show __P ((void)); -void map_sprintf __P ((char *buf)); -void map_add_dir __P ((char dir)); -int map_walk __P ((char *word, int silent, int maponly)); +void map_retrace(int steps, int walk_back); +void map_show(void); +void map_sprintf(char *buf); +void map_add_dir(char dir); +int map_walk(char *word, int silent, int maponly); #endif /* _MAP_H_ */ |