m4-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to m4/src/Attic/eval.c,v [branch-1_4]


From: Eric Blake
Subject: Changes to m4/src/Attic/eval.c,v [branch-1_4]
Date: Thu, 27 Jul 2006 21:41:13 +0000

CVSROOT:        /sources/m4
Module name:    m4
Branch:         branch-1_4
Changes by:     Eric Blake <ericb>      06/07/27 21:41:12

Index: src/eval.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/eval.c,v
retrieving revision 1.1.1.1.2.5
retrieving revision 1.1.1.1.2.6
diff -u -b -r1.1.1.1.2.5 -r1.1.1.1.2.6
--- src/eval.c  13 Jul 2006 13:38:20 -0000      1.1.1.1.2.5
+++ src/eval.c  27 Jul 2006 21:41:12 -0000      1.1.1.1.2.6
@@ -58,20 +58,20 @@
   }
 eval_error;
 
-static eval_error logical_or_term _((eval_token, eval_t *));
-static eval_error logical_and_term _((eval_token, eval_t *));
-static eval_error or_term _((eval_token, eval_t *));
-static eval_error xor_term _((eval_token, eval_t *));
-static eval_error and_term _((eval_token, eval_t *));
-static eval_error not_term _((eval_token, eval_t *));
-static eval_error logical_not_term _((eval_token, eval_t *));
-static eval_error cmp_term _((eval_token, eval_t *));
-static eval_error shift_term _((eval_token, eval_t *));
-static eval_error add_term _((eval_token, eval_t *));
-static eval_error mult_term _((eval_token, eval_t *));
-static eval_error exp_term _((eval_token, eval_t *));
-static eval_error unary_term _((eval_token, eval_t *));
-static eval_error simple_term _((eval_token, eval_t *));
+static eval_error logical_or_term (eval_token, eval_t *);
+static eval_error logical_and_term (eval_token, eval_t *);
+static eval_error or_term (eval_token, eval_t *);
+static eval_error xor_term (eval_token, eval_t *);
+static eval_error and_term (eval_token, eval_t *);
+static eval_error not_term (eval_token, eval_t *);
+static eval_error logical_not_term (eval_token, eval_t *);
+static eval_error cmp_term (eval_token, eval_t *);
+static eval_error shift_term (eval_token, eval_t *);
+static eval_error add_term (eval_token, eval_t *);
+static eval_error mult_term (eval_token, eval_t *);
+static eval_error exp_term (eval_token, eval_t *);
+static eval_error unary_term (eval_token, eval_t *);
+static eval_error simple_term (eval_token, eval_t *);
 
 /*--------------------.
 | Lexical functions.  |




reply via email to

[Prev in Thread] Current Thread [Next in Thread]