* sysdeps/unix/sysv/linux/mips/ftruncate64.c: Fix prototype of
syscall. * sysdeps/unix/sysv/linux/mips/truncate64.c: Likewise.
This commit is contained in:
parent
a2fa860526
commit
2995dde005
@ -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. */
|
||||
|
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user