Branch: Tag:

2004-06-02

2004-06-02 00:11:26 by Martin Nilsson <mani@lysator.liu.se>

inline -> INLINE

Rev: src/block_alloc.h:1.73
Rev: src/builtin.cmod:1.160
Rev: src/docode.c:1.177
Rev: src/gc.h:1.115
Rev: src/global.h:1.100
Rev: src/interpret.c:1.351
Rev: src/interpret.h:1.153
Rev: src/object.c:1.256
Rev: src/pike_cpulib.h:1.12
Rev: src/pike_float.h:1.7
Rev: src/pike_memory.c:1.152
Rev: src/program.h:1.206
Rev: src/sscanf.c:1.162
Rev: src/svalue.h:1.130

2:   || This file is part of Pike. For copyright information see COPYRIGHT.   || Pike is distributed under GPL, LGPL and MPL. See the file COPYING   || for more information. - || $Id: interpret.h,v 1.152 2004/05/20 20:13:38 grubba Exp $ + || $Id: interpret.h,v 1.153 2004/06/02 00:09:48 nilsson Exp $   */      #ifndef INTERPRET_H
703:    * to avoid implicit declaration of mega_apply().    */   #ifdef __ECL - static inline void apply_low(struct object *o, ptrdiff_t fun, INT32 args) + static INLINE void apply_low(struct object *o, ptrdiff_t fun, INT32 args)   {    mega_apply(APPLY_LOW, args, (void*)o, (void*)fun);   }    - static inline void strict_apply_svalue(struct svalue *sval, INT32 args) + static INLINE void strict_apply_svalue(struct svalue *sval, INT32 args)   {    mega_apply(APPLY_SVALUE_STRICT, args, (void*)sval, 0);   }