From f28ee65baadf611e7fb95e8ac1f795306da0ec1f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 6 May 1998 07:35:37 +0000 Subject: [PATCH] damn solaris doesn't prototype it's functions correctly. grrr. --- syscall.c | 1 + 1 file changed, 1 insertion(+) diff --git a/syscall.c b/syscall.c index 96b42b6f..c6fd354b 100644 --- a/syscall.c +++ b/syscall.c @@ -128,6 +128,7 @@ int do_fstat(int fd, STRUCT_STAT *st) OFF_T do_lseek(int fd, OFF_T offset, int whence) { #if HAVE_OFF64_T + off64_t lseek64(); return lseek64(fd, offset, whence); #else return lseek(fd, offset, whence); -- 2.34.1