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 /beam.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 'beam.h')
-rw-r--r-- | beam.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -3,11 +3,11 @@ #ifndef _BEAM_H_ #define _BEAM_H_ -int process_message __P ((char *buf, int len)); -void cancel_edit __P ((editsess *sp)); -void abort_edit_fd __P ((int fd)); -void message_edit __P ((char *text, int msglen, char view, char builtin)); -void sig_chld_bottomhalf __P ((void)); +int process_message(char *buf, int len); +void cancel_edit(editsess *sp); +void abort_edit_fd(int fd); +void message_edit(char *text, int msglen, char view, char builtin); +void sig_chld_bottomhalf(void); extern char edit_start[]; extern char edit_end[]; |