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 Wed Sep 19 08:42:18 2012 +1000 (11 years ago)
permissions -rw-r--r--
last change Invalidate render buffers when vram32 region is written from DMA / store
queue. Patch from Guinux, thanks!
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 */
.