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/llarp/common.hpp

12 lines
202 B
C++

#ifndef LLARP_COMMON_HPP
#define LLARP_COMMON_HPP
#ifdef __STRICT_ANSI__
#define INLINE __inline__
#else
#define INLINE inline
#endif
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#endif