Branch: Tag:

1998-04-17

1998-04-17 05:08:02 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

ERROR -> PIKE_ERROR

Rev: src/array.c:1.32
Rev: src/array.h:1.13
Rev: src/builtin_functions.c:1.100
Rev: src/error.h:1.18
Rev: src/interpret.c:1.79
Rev: src/operators.c:1.32

5:   \*/      /* -  * $Id: array.h,v 1.12 1998/03/28 15:40:00 grubba Exp $ +  * $Id: array.h,v 1.13 1998/04/17 05:08:00 hubbe Exp $    */   #ifndef ARRAY_H   #define ARRAY_H
33:      extern struct array empty_array;    + #if defined(DEBUG_MALLOC) && defined(DEBUG) + #define ITEM(X) (((struct array *)(debug_malloc_pass((X))))->item) + #else   #define ITEM(X) ((X)->item) -  + #endif      /* These are arguments for the function 'merge' which merges two sorted    * set stored in arrays in the way you specify