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 Aug 06 06:13:51 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change First pass at implementing the tile clip. Reasonably accurate wrt basic
understanding of how its supposed to work, not so accurate wrt actual
hardware behaviour
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 */
.