Search
lxdream.org :: lxdream/test/include/sys/_types.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/_types.h
changeset 185:6755a04c447f
author nkeynes
date Sun Oct 07 06:27:12 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Fix compilation warnings
view annotate diff log raw
     1 /* ANSI C namespace clean utility typedefs */
     3 /* This file defines various typedefs needed by the system calls that support
     4    the C library.  Basically, they're just the POSIX versions with an '_'
     5    prepended.  This file lives in the `sys' directory so targets can provide
     6    their own if desired (or they can put target dependant conditionals here).
     7 */
     9 #ifndef	_SYS__TYPES_H
    10 #define _SYS__TYPES_H
    12 typedef long _off_t;
    13 typedef long _ssize_t;
    15 #endif	/* _SYS__TYPES_H */
.