Etterna 0.74.4
Loading...
Searching...
No Matches
arch_setup.h
1#ifndef ARCH_SETUP_UNIX_H
2#define ARCH_SETUP_UNIX_H
3
4#if !defined(_STDC_C99) && !defined(__C99FEATURES__)
5#define __C99FEATURES__
6#endif
7
8#ifdef HAVE_ALLOCA_H
9#include <alloca.h>
10#endif
11
12#if defined(HAVE_STDINT_H) /* need to define int64_t if so */
13#include <stdint.h>
14#endif
15
16#ifdef HAVE_SYS_PARAM_H
17#include <sys/param.h>
18#endif
19
20#include "archutils/Common/gcc_byte_swaps.h"
21#endif