sandbox/linux/defs.h

12 lines
191 B
C
Raw Normal View History

2018-02-22 19:38:27 +00:00
#ifndef __KF_LINUX_DEFS_H__
#define __KF_LINUX_DEFS_H__
#include <stddef.h>
#include <stdint.h>
2018-02-22 19:38:27 +00:00
typedef int32_t KF_INT;
typedef int64_t KF_LONG;
constexpr uint8_t STACK_SIZE = 128;
2018-02-22 19:38:27 +00:00
#endif