diff --git a/src/operators.c b/src/operators.c index b0e25077a419528816cea3aead208493411a7430..f8465b151773a1b7a3af8bb072f69fc62599073d 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 d148275a7e9dbfd008084cde47f148ffdfde06bb..58c37c17e290e380d3f4101aa99cd612e0b69f6e 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