1 // LAF Base Library
2 // Copyright (c) 2016 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_INTS_H_INCLUDED
8 #define BASE_INTS_H_INCLUDED
9 #pragma once
10 
11 #include "base/config.h"
12 
13 #ifdef HAVE_STDINT_H
14   #include <stdint.h>
15 #else
16   #error uint8_t, uint32_t, etc. definitions are missing
17 #endif
18 
19 #endif
20