v22.2b14/
v22.2b14/Win32/
v22.2b14/compat/
v22.2b14/testsuite/
v22.2b14/testsuite/clone/
v22.2b14/testsuite/command/
v22.2b14/testsuite/data/
v22.2b14/testsuite/etc/
v22.2b14/testsuite/include/
v22.2b14/testsuite/inherit/
v22.2b14/testsuite/inherit/master/
v22.2b14/testsuite/log/
v22.2b14/testsuite/single/
v22.2b14/testsuite/single/tests/compiler/
v22.2b14/testsuite/single/tests/efuns/
v22.2b14/testsuite/single/tests/operators/
v22.2b14/testsuite/u/
v22.2b14/tmp/
#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"

#ifdef WIN32
#  define outp outptr
#endif

#endif