Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenunistd.h
Go to the documentation of this file.
00001 00006 /* 00007 * This file is part of the Mingw32 package. 00008 * 00009 * unistd.h maps (roughly) to io.h 00010 */ 00011 00012 #ifndef __STRICT_ANSI__ 00013 00014 #include <io.h> 00015 #include <process.h> 00016 00017 #define __UNISTD_GETOPT__ 00018 #include <getopt.h> 00019 #undef __UNISTD_GETOPT__ 00020 00021 #ifdef __cplusplus 00022 extern "C" { 00023 #endif 00024 00025 #ifndef FTRUNCATE_DEFINED 00026 #define FTRUNCATE_DEFINED 00027 /* This is defined as a real library function to allow autoconf 00028 to verify its existence. */ 00029 int ftruncate(int, off_t); 00030 __CRT_INLINE int ftruncate(int __fd, off_t __length) 00031 { 00032 return _chsize (__fd, __length); 00033 } 00034 #endif 00035 00036 #ifdef __cplusplus 00037 } 00038 #endif 00039 00040 #endif Generated on Sat May 26 2012 04:28:29 for ReactOS by
1.7.6.1
|