This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
[PATCH] _lseek missing return type
- From: "Jaap de Wolff" <info at jasoon dot nl>
- To: <newlib at sourceware dot org>
- Date: Fri, 9 Feb 2018 09:40:28 +0100
- Subject: [PATCH] _lseek missing return type
- Authentication-results: sourceware.org; auth=none
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)