aboutsummaryrefslogtreecommitdiffstats
path: root/log.h
diff options
context:
space:
mode:
authorpowwow@askgustav.com <powwow@askgustav.com>2019-03-18 23:05:26 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2019-04-23 20:37:05 (GMT)
commit304a722c426f47a461dc88c4493f800c0690b29b (patch)
tree151b974354c0c7ec4e89649a949db32f11b56442 /log.h
parent7db984561ef8fd0ff9165288324dbc81516113f0 (diff)
downloadpowwow-304a722c426f47a461dc88c4493f800c0690b29b.zip
powwow-304a722c426f47a461dc88c4493f800c0690b29b.tar.gz
powwow-304a722c426f47a461dc88c4493f800c0690b29b.tar.bz2
remove some non-ANSI C support
Diffstat (limited to 'log.h')
-rw-r--r--log.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/log.h b/log.h
index 0fe3a54..a5822b4 100644
--- a/log.h
+++ b/log.h
@@ -8,15 +8,15 @@ enum linetype { EMPTY = 0, LINE = 1, PROMPT = 2, SLEEP = 3 };
extern FILE *capturefile, *recordfile, *moviefile;
extern vtime movie_last;
-void log_clearsleep __P ((void));
-void log_flush __P ((void));
-int log_getsize __P ((void));
-void log_resize __P ((int newsize));
-void log_write __P ((char *str, int len, int newline));
+void log_clearsleep(void);
+void log_flush(void);
+int log_getsize(void);
+void log_resize(int newsize);
+void log_write(char *str, int len, int newline);
-void reprint_writeline __P ((char *line));
-char *reprint_getline __P ((void));
-void reprint_clear __P ((void));
+void reprint_writeline(char *line);
+char *reprint_getline(void);
+void reprint_clear(void);
#endif /* _LOG_H_ */