00001 #ifndef FILESYS_OFF_T_H 00002 //101530224286 00003 #define FILESYS_OFF_T_H 00004 00005 #include <stdint.h> 00006 00007 /* An offset within a file. 00008 This is a separate header because multiple headers want this 00009 definition but not any others. */ 00010 typedef int32_t off_t; 00011 00012 /* Format specifier for printf(), e.g.: 00013 printf ("offset=%"PROTd"\n", offset); */ 00014 #define PROTd PRId32 00015 00016 #endif /* filesys/off_t.h */