mirror of
https://github.com/bebbo/amigaos-cross-toolchain.git
synced 2025-12-08 22:38:24 +00:00
19 lines
496 B
Diff
19 lines
496 B
Diff
--- gcc-2.95.3/libio/ioseekpos.c 1997-09-16 18:00:23.000000000 +0200
|
|
+++ gcc-2.95.3/libio/ioseekpos.c 2012-08-04 11:53:28.000000000 +0200
|
|
@@ -25,10 +25,13 @@
|
|
|
|
#include <libioP.h>
|
|
|
|
-_IO_pos_t
|
|
+// Changed 2001-04-05 Andreas Wolff <andreas.wolff@dusnet.de>
|
|
+// Avoid conflicting types with libioP.h
|
|
+// This may be obsolete for future versions of libio
|
|
+_IO_off_t
|
|
_IO_seekpos (fp, pos, mode)
|
|
_IO_FILE *fp;
|
|
- _IO_pos_t pos;
|
|
+ _IO_off_t pos;
|
|
int mode;
|
|
{
|
|
_IO_pos_t retval;
|