blob: a7ca3f4312b4c9590cae2221d9cc3f28b5ed1e02 [file] [log] [blame]
#ifndef __SIMPLE_H_INCLUDE__
#define __SIMPLE_H_INCLUDE__
#ifdef __cplusplus
#define EXTERN_C extern "C"
#else
#define EXTERN_C
#endif
#include <stdint.h>
static const int64_t SIMPLE_VALUE = 42;
EXTERN_C const int64_t simple_function();
static inline int64_t simple_static_function() { return 84; }
#endif