pike.git/src/program.h:1: Inside #if undefined(EXEC_H)
+ /*\
+ ||| This file a part of uLPC, and is copyright by Fredrik Hubinette
+ ||| uLPC is distributed as GPL (General Public License)
+ ||| See the files COPYING and DISCLAIMER for more information.
+ \*/
#ifndef EXEC_H
#define EXEC_H
#include <stdarg.h>
#include "config.h"
#include "machine.h"
#include "types.h"
struct svalue;
struct module;
pike.git/src/program.h:65:
#define ID_NOMASK 0x04
#define ID_PUBLIC 0x08
#define ID_PROTECTED 0x10
#define ID_VARARGS 0x20
#define ID_INLINE 0x40
#define ID_HIDDEN 0x80 /* needed? */
#define ID_INHERITED 0x100
struct reference
{
- INT16 inherit_offset;
- INT16 identifier_offset;
+ unsigned INT16 inherit_offset;
+ unsigned INT16 identifier_offset;
INT16 flags; /* static, private etc.. */
};
struct inherit
{
struct program *prog;
INT16 inherit_level; /* really needed? */
INT16 identifier_level;
INT32 storage_offset;
};