1 #define _FILE_OFFSET_BITS 64 2 #include <unistd.h> 3 #include <fcntl.h> 4 #include "io_internal.h" 5 io_readfile(int64 * d,const char * s)6 int io_readfile(int64* d,const char* s) { 7 long fd=open(s,O_RDONLY); 8 if (fd != -1) { 9 *d=fd; 10 return 1; 11 } 12 return 0; 13 } 14