sandbox/misc/kforth/defs.h

16 lines
215 B
C
Raw Normal View History

2018-03-02 16:47:56 +00:00
#ifndef __KF_DEFS_H__
#define __KF_DEFS_H__
2018-03-03 01:03:32 +00:00
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
2018-03-02 16:47:56 +00:00
2018-03-03 01:03:32 +00:00
#ifdef PLATFORM_pc
2018-03-02 16:47:56 +00:00
#include "pc/defs.h"
#else
#include "default/defs.h"
#endif
2018-03-03 01:03:32 +00:00
#endif /* __KF_DEFS_H__ */