summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-29 13:13:09 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-29 13:13:09 +0000
commitc1c68f9bf9cadf0e0c7ddd7db186c3a990aac632 (patch)
treecd6d1e41780ab7c66ee71ab20d2d80d7b08fd163
parentbb8eb6e62d97b857129684472cfce975746a6229 (diff)
downloadperl-c1c68f9bf9cadf0e0c7ddd7db186c3a990aac632.tar.gz
Forgot from #12756.
p4raw-id: //depot/perl@12757
-rw-r--r--perlio.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/perlio.h b/perlio.h
index 381367d1dc..3c0234ebca 100644
--- a/perlio.h
+++ b/perlio.h
@@ -54,6 +54,11 @@
*/
#include <stdio.h>
+#ifdef __BEOS__
+int fseeko(FILE *stream, off_t offset, int whence);
+off_t ftello(FILE *stream);
+#endif
+
#if defined(USE_64_BIT_STDIO) && defined(HAS_FTELLO) && !defined(USE_FTELL64)
#define ftell ftello
#endif