From: Gaius Mulley Date: Thu, 25 Jan 2024 15:04:53 +0000 (+0000) Subject: modula2: correct prototype for lseek within gcc/m2/gm2-libs/libc.def X-Git-Tag: basepoints/gcc-15~1712 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ffcceef8137b7151ad1e779e38e4b6a3bdcaea8;p=thirdparty%2Fgcc.git modula2: correct prototype for lseek within gcc/m2/gm2-libs/libc.def This patch corrects the definition of lseek by changing the second parameter to a CSSIZE_T rather than LONGINT and allow the return value to be ignored. gcc/m2/ChangeLog: * gm2-libs/libc.def (lseek): Change the second parameter type to CSSIZE_T and make the return value optional. Signed-off-by: Gaius Mulley --- diff --git a/gcc/m2/gm2-libs/libc.def b/gcc/m2/gm2-libs/libc.def index 4a389f5d49f8..f28f8b5f2bca 100644 --- a/gcc/m2/gm2-libs/libc.def +++ b/gcc/m2/gm2-libs/libc.def @@ -227,7 +227,7 @@ PROCEDURE creat (filename: ADDRESS; mode: CARDINAL) : INTEGER; off_t lseek(int fildes, off_t offset, int whence); *) -PROCEDURE lseek (fd: INTEGER; offset: LONGINT; whence: INTEGER) : LONGINT ; +PROCEDURE lseek (fd: INTEGER; offset: CSSIZE_T; whence: INTEGER) : [ CSSIZE_T ] ; (*