luxos/SysCore/include/size_t.h

24 lines
324 B
C

#ifndef __SIZE_T_H
#define __SIZE_T_H
/************************************
* size_t.h *
* - Standard C/C++ size_t type *
************************************/
#ifdef __cplusplus
extern "C"
{
#endif
/* standard size_t type */
typedef unsigned size_t;
#ifdef __cplusplus
}
#endif
#endif