mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
12 lines
202 B
C++
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
|