pike.git / src / operators.c

version» Context lines:

pike.git/src/operators.c:1:   /*\   ||| This file a part of Pike, and is copyright by Fredrik Hubinette   ||| Pike is distributed as GPL (General Public License)   ||| See the files COPYING and DISCLAIMER for more information.   \*/   #include <math.h>   #include "global.h" - RCSID("$Id: operators.c,v 1.12 1997/03/14 04:37:17 hubbe Exp $"); + RCSID("$Id: operators.c,v 1.13 1997/04/16 03:09:15 hubbe Exp $");   #include "interpret.h"   #include "svalue.h"   #include "multiset.h"   #include "mapping.h"   #include "array.h"   #include "stralloc.h"   #include "opcodes.h"   #include "operators.h"   #include "language.h"   #include "memory.h"   #include "error.h"   #include "docode.h"   #include "constants.h"   #include "peep.h"   #include "lex.h"   #include "program.h"   #include "object.h" -  + #include "pike_types.h"      #define COMPARISON(ID,NAME,EXPR) \   void ID(INT32 args) \   { \    int i; \    if(args > 2) \    pop_n_elems(args-2); \    else if(args < 2) \    error("Too few arguments to %s\n",NAME); \    i=EXPR; \