]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* 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 66c6548ee8abf2fbdb8ac048b501cce88527ffb6..768946e9fa9634e80980d6430047a3e933510ae5 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 08d96676124de017ea5d24a2347c90afd4fdfb9b..bcdb9ddf98184276b3126c5e5d3b6e0d0fffbffd 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.  */