pike.git
/
src
/
operators.c
version
»
Context lines:
10
20
40
80
file
none
3
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.
30
1998/04/10
15
:
24
:
05
grubba Exp $");
+
RCSID("$Id: operators.c,v 1.
31
1998/04/10
17
:
41
:
22
grubba 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 "pike_memory.h"
pike.git/src/operators.c:749:
default: ERROR("`|", "Bitwise or on illegal type.\n", sp, 2); } } void f_or(INT32 args) { switch(args) {
-
case 0:
ERRROR
("`|", "Too few arguments.\n", sp, 0);
+
case 0:
ERROR
("`|", "Too few arguments.\n", sp, 0);
case 1: return; case 2: o_or(); return; default: if(sp[-args].type==T_OBJECT) { CALL_OPERATOR(LFUN_OR, args); } else { speedup(args, o_or); } }