1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/common.h
2018-04-05 10:43:16 -04:00

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