Branch: Tag:

1999-03-02

1999-03-02 03:13:35 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

int(X..Y) implemented, plus some bugfixes and removed two memory 'leaks'

Rev: src/constants.c:1.15
Rev: src/global.h:1.28
Rev: src/interpret.c:1.116
Rev: src/interpret.h:1.27
Rev: src/language.yacc:1.111
Rev: src/las.c:1.75
Rev: src/main.c:1.64
Rev: src/modules/Gmp/mpz_glue.c:1.40
Rev: src/operators.c:1.48
Rev: src/pike_types.c:1.54
Rev: src/pike_types.h:1.18
Rev: src/stralloc.h:1.33
Rev: src/svalue.h:1.22
Rev: src/testsuite.in:1.151

5:   \*/      /* -  * $Id: global.h,v 1.27 1999/02/27 17:19:12 grubba Exp $ +  * $Id: global.h,v 1.28 1999/03/02 03:13:14 hubbe Exp $    */   #ifndef GLOBAL_H   #define GLOBAL_H
143:   #endif   #endif    + #define MAX_INT32 2147483647 + #define MIN_INT32 -2147483648 +    #define INT16 short   #define INT8 char