From aa711e55fbd0ed99ff67f6bd47eee1bb5b47b258 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 6 Jun 1998 15:05:03 +0200
Subject: [PATCH] Fixed prototype.

Rev: src/operators.c:1.36
Rev: src/operators.h:1.6
---
 src/operators.c | 4 ++--
 src/operators.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/operators.c b/src/operators.c
index b0e25077a4..f8465b1517 100644
--- a/src/operators.c
+++ b/src/operators.c
@@ -5,7 +5,7 @@
 \*/
 #include <math.h>
 #include "global.h"
-RCSID("$Id: operators.c,v 1.35 1998/06/06 03:22:15 hubbe Exp $");
+RCSID("$Id: operators.c,v 1.36 1998/06/06 13:05:03 grubba Exp $");
 #include "interpret.h"
 #include "svalue.h"
 #include "multiset.h"
@@ -1958,7 +1958,7 @@ void init_operators(void)
 }
 
 
-void exit_operators()
+void exit_operators(void)
 {
   if(string_assignment_program)
   {
diff --git a/src/operators.h b/src/operators.h
index d148275a7e..58c37c17e2 100644
--- a/src/operators.h
+++ b/src/operators.h
@@ -5,7 +5,7 @@
 \*/
 
 /*
- * $Id: operators.h,v 1.5 1998/05/25 10:38:46 hubbe Exp $
+ * $Id: operators.h,v 1.6 1998/06/06 13:04:40 grubba Exp $
  */
 #ifndef OPERATORS_H
 #define OPERATORS_H
@@ -56,7 +56,7 @@ void f_index(INT32 args);
 void f_arrow(INT32 args);
 void f_sizeof(INT32 args);
 void init_operators(void);
-void exit_operators();
+void exit_operators(void);
 /* Prototypes end here */
 
 #undef COMPARISON
-- 
GitLab