mud/fluffos-2.23-ds03/std.h
2020-09-06 05:43:07 -07:00

41 lines
560 B
C

#ifndef STD_H
#define STD_H
/* This stuff should be included EVERYWHERE */
/* the definition of ARCH */
#include "arch.h"
#ifdef EDIT_SOURCE
#define CONST
#define INLINE
#else
/* all options and configuration */
#include "options_incl.h"
#include "configure.h"
# ifdef PEDANTIC
# undef INLINE
# define INLINE
# endif
#endif
#include "portability.h"
#include "macros.h"
#ifndef _FUNC_SPEC_
# include "std_incl.h"
# include "malloc_incl.h"
# ifndef NO_OPCODES
# include "opcodes.h"
# endif
#endif
#include "debug.h"
#endif