sandbox/misc/kforth/defs.h

16 lines
215 B
C

#ifndef __KF_DEFS_H__
#define __KF_DEFS_H__
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#ifdef PLATFORM_pc
#include "pc/defs.h"
#else
#include "default/defs.h"
#endif
#endif /* __KF_DEFS_H__ */