1// LAF Base Library -*- C++ -*-
2// Copyright (c) 2001-2018 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef BASE_CONFIG_H_INCLUDED
8#define BASE_CONFIG_H_INCLUDED
9#pragma once
10
11#define HAVE_STDINT_H 1
12#define HAVE_SCHED_YIELD 1
13#define HAVE_DLFCN_H 1
14#define HAVE_SYSTEM 1
15
16#define LAF_LITTLE_ENDIAN
17/* #undef LAF_BIG_ENDIAN */
18
19#endif
20