mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
12 lines
198 B
C
12 lines
198 B
C
#ifndef LLARP_COMMON_H
|
|
#define LLARP_COMMON_H
|
|
#ifdef __STRICT_ANSI__
|
|
#define INLINE __inline__
|
|
#else
|
|
#define INLINE inline
|
|
#endif
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#endif
|