Replace off_t with file_offset_t
[pforth] / csrc / pf_types.h
index ac4f33b..619a2c0 100644 (file)
 ** Type Declarations
 ***************************************************************/
 
 ** Type Declarations
 ***************************************************************/
 
+#ifndef AMIGA
+#include <sys/types.h>
+#endif
+
+/* file_offset_t is used in place of off_t */
+typedef long file_offset_t;
+
 #ifndef Err
     typedef long Err;
 #endif
 #ifndef Err
     typedef long Err;
 #endif