summaryrefslogtreecommitdiff
path: root/sys/arch/m68k
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-02-22 17:29:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-02-22 17:29:15 +0000
commitfd2152f9e652fb5e938bc8f02fac662062af5df2 (patch)
tree284884ee2de5ccea2086d64cb22b6536e745fdb9 /sys/arch/m68k
parent8ddf0fc0955bdedd8f4fdff69c51e32bde9bef12 (diff)
Use an _BSD_FOO_T_ type declaration for off_t in machine/ansi.h to allow
off_t to be visible in stdio.h even in strict ansi mode. This is needed for ftello()/fseeko() and it allows us to remove the horrible fpos_t hack.
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r--sys/arch/m68k/include/ansi.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/ansi.h b/sys/arch/m68k/include/ansi.h
index 1a734fe7c00..53c6af36a97 100644
--- a/sys/arch/m68k/include/ansi.h
+++ b/sys/arch/m68k/include/ansi.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ansi.h,v 1.5 1997/07/07 05:56:37 millert Exp $ */
+/* $OpenBSD: ansi.h,v 1.6 2000/02/22 17:29:13 millert Exp $ */
/* $NetBSD: ansi.h,v 1.7 1996/11/15 22:38:52 jtc Exp $ */
/*-
@@ -75,4 +75,10 @@
#define _BSD_WINT_T_ int /* wint_t */
#define _BSD_RUNE_T_ int /* rune_t */
+/*
+ * We describe off_t here so its declaration can be visible to
+ * stdio without pulling in all of <sys/type.h>, thus appeasing ANSI.
+ */
+#define _BSD_OFF_T_ long long /* file offset */
+
#endif /* _ANSI_H_ */