FileStream.st
changeset 2808 3a9ce7aadad8
parent 2796 b45639a2fc1e
child 2811 21136662e8f1
--- a/FileStream.st	Wed Jul 30 12:57:47 1997 +0200
+++ b/FileStream.st	Wed Jul 30 13:13:17 1997 +0200
@@ -51,6 +51,18 @@
 #endif
 
 /*
+ * not all systems have time_t and off_t
+ * explicit add of those we know to have ...
+ */
+#ifdef __osf__
+# define OFF_T  off_t
+#endif
+
+#ifndef OFF_T
+# define OFF_T  long
+#endif
+
+/*
  * on some systems errno is a macro ... check for it here
  */
 #ifndef errno
@@ -693,5 +705,5 @@
 !FileStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.39 1997-07-28 18:47:21 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.40 1997-07-30 11:13:17 cg Exp $'
 ! !