// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // size_t typedef shared by stddef.h, stdio.h, stdlib.h, string.h, time.h, and // wchar.h // ---------------------------------------------------------------------------- #ifndef __SIZE_T_H #define __SIZE_T_H __SIZE_T_H typedef size_t; // TODO - personality? #endif // __SIZE_T_H