1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- <sys/types.h> now also includes <time.h> and <stddef.h>.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15012 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-07-15 14:31:37 +00:00
parent 132aaa8293
commit 872c9bc39c
2 changed files with 15 additions and 1 deletions

View File

@ -65,6 +65,8 @@
file altogether. Note that in this case you would have to build your file altogether. Note that in this case you would have to build your
own software using common TCP/IP SDK header files. own software using common TCP/IP SDK header files.
- <sys/types.h> now also includes <time.h> and <stddef.h>.
c.lib 1.193 (4.6.2005) c.lib 1.193 (4.6.2005)

View File

@ -1,5 +1,5 @@
/* /*
* $Id: types.h,v 1.4 2005-02-20 15:46:57 obarthel Exp $ * $Id: types.h,v 1.5 2005-07-15 14:31:37 obarthel Exp $
* *
* :ts=4 * :ts=4
* *
@ -61,6 +61,18 @@ typedef unsigned int uid_t;
/****************************************************************************/ /****************************************************************************/
#ifndef _TIME_H
#include <time.h>
#endif /* _TIME_H */
/****************************************************************************/
#ifndef _STDDEF_H
#include <stddef.h>
#endif /* _STDDEF_H */
/****************************************************************************/
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif /* __cplusplus */ #endif /* __cplusplus */