lokinet/include/llarp/common.hpp
2018-11-20 00:52:19 +00:00

12 lines
202 B
C++

#ifndef LLARP_COMMON_HPP
#define LLARP_COMMON_HPP
#ifdef __STRICT_ANSI__
#define INLINE __inline__
#else
#define INLINE inline
#endif
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#endif