mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-04-26 03:31:32 +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
|