mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-06-14 22:26:05 +08:00
18 lines
218 B
C
18 lines
218 B
C
/* copyright(C) 2003 H.Kawai (under KL-01). */
|
|
|
|
#if (!defined(STDDEF_H))
|
|
|
|
#define STDDEF_H 1
|
|
|
|
#if (defined(__cplusplus))
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef unsigned int size_t;
|
|
|
|
#if (defined(__cplusplus))
|
|
}
|
|
#endif
|
|
|
|
#endif
|