* sysdeps/unix/sysv/linux/mips/ftruncate64.c: Fix prototype of
authorAndreas Jaeger <aj@suse.de>
Wed, 31 May 2000 12:00:45 +0000 (12:00 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 31 May 2000 12:00:45 +0000 (12:00 +0000)
syscall.
* sysdeps/unix/sysv/linux/mips/truncate64.c: Likewise.

sysdeps/unix/sysv/linux/mips/ftruncate64.c
sysdeps/unix/sysv/linux/mips/truncate64.c

index 66c6548..768946e 100644 (file)
@@ -33,7 +33,8 @@ extern int __have_no_truncate64;
 #endif
 
 /* The order of hight, low depends on endianness.  */
-extern int __syscall_ftruncate64 (int fd, int high_length, int low_length);
+extern int __syscall_ftruncate64 (int fd, int dummy, int high_length,
+                                 int low_length);
 
 
 /* Truncate the file FD refers to to LENGTH bytes.  */
index 08d9667..bcdb9dd 100644 (file)
@@ -33,7 +33,8 @@ int __have_no_truncate64;
 #endif
 
 /* The order of hight, low depends on endianness.  */
-extern int __syscall_truncate64 (const char *path, int high_length, int low_length);
+extern int __syscall_truncate64 (const char *path, int dummy,
+                                int high_length, int low_length);
 
 
 /* Truncate the file FD refers to to LENGTH bytes.  */