mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
12 lines
180 B
C++
12 lines
180 B
C++
#ifndef LLARP_COMMON_HPP
|
|
#define LLARP_COMMON_HPP
|
|
#ifdef __STRICT_ANSI__
|
|
#define INLINE __inline__
|
|
#else
|
|
#define INLINE inline
|
|
#endif
|
|
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#endif
|