You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/common.h

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