This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] _lseek missing return type


In syscalls _lseek was missing a return type

Jaap de Wolff

diff --git a/libgloss/arm/syscalls.c b/libgloss/arm/syscalls.c
index 8163c7983..5548dcfb3 100644
--- a/libgloss/arm/syscalls.c
+++ b/libgloss/arm/syscalls.c
@@ -493,6 +493,7 @@ _swilseek (int fd,
     return -1;
 }
 
+int
 _lseek (int fd,
 	int ptr,
 	int dir)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]