mirror of
https://github.com/utkumaden/libmx.git
synced 2025-01-23 14:06:33 +01:00
12 lines
173 B
C
12 lines
173 B
C
|
#ifndef _MX_BASE_H_
|
||
|
#define _MX_BASE_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#define MX_API
|
||
|
#define MX_IMPL
|
||
|
#define MX_INLINE inline static
|
||
|
|
||
|
#endif
|