lokinet/llarp/common.hpp

12 lines
202 B
C++
Raw Normal View History

2018-11-19 23:27:59 +00:00
#ifndef LLARP_COMMON_HPP
#define LLARP_COMMON_HPP
2018-04-04 16:10:27 +00:00
#ifdef __STRICT_ANSI__
#define INLINE __inline__
#else
#define INLINE inline
#endif
2018-04-05 14:23:14 +00:00
#include <stdbool.h>
#include <stdint.h>
2018-04-05 14:43:16 +00:00
#include <stdlib.h>
2018-04-04 16:10:27 +00:00
#endif