mirror of
https://github.com/oxen-io/lokinet
synced 2023-12-14 06:53:00 +01:00
11 lines
198 B
C
11 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
|