From 79ed4291d1f87adfe578006178d3ffec45bfc066 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Thu, 22 Jan 1998 00:17:26 +0100
Subject: [PATCH] Now with real prototypes.

Rev: src/cpp.h:1.3
Rev: src/lex.h:1.8
---
 src/cpp.h | 4 ++--
 src/lex.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/cpp.h b/src/cpp.h
index 7fcca20dba..b629743ec7 100644
--- a/src/cpp.h
+++ b/src/cpp.h
@@ -18,9 +18,9 @@ void PUSH_STRING(char *str,
 		 dynamic_buffer *buf);
 void free_one_define(struct hash_entry *h);
 void f_cpp(INT32 args);
-void init_cpp();
+void init_cpp(void);
 void add_predefine(char *s);
-void exit_cpp();
+void exit_cpp(void);
 /* Prototypes end here */
 
 #endif
diff --git a/src/lex.h b/src/lex.h
index df6a178150..3432fc4016 100644
--- a/src/lex.h
+++ b/src/lex.h
@@ -66,7 +66,7 @@ extern struct instr instrs[];
 /* Prototypes begin here */
 void exit_lex(void);
 struct reserved;
-void init_lex();
+void init_lex(void);
 char *low_get_f_name(int n,struct program *p);
 char *get_f_name(int n);
 char *get_token_name(int n);
-- 
GitLab