summaryrefslogtreecommitdiff
path: root/bsp/libwrap/sys/lseek.c
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2018-01-02 18:43:00 -0800
committerPalmer Dabbelt <palmer@dabbelt.com>2018-01-02 18:43:00 -0800
commit1d1fcd04ebac848accf27941e78e7eb6e3e315d6 (patch)
treeb12ce8a5baa230f03e776d2b599343aee7a6150c /bsp/libwrap/sys/lseek.c
parentcee980238e2dbd7c9af0eb79bd5621a4dc73c234 (diff)
Add _FUNC aliases for newlib-2.5.0
I'm not sure what the policy actaully is here, but some newlib functions now have an extra underscore before them. This defines a bunch of aliases and some more wrappers to link against the correct newlib functions for 2.5.0 but maintain compatibility with 2.4.0.
Diffstat (limited to 'bsp/libwrap/sys/lseek.c')
-rw-r--r--bsp/libwrap/sys/lseek.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bsp/libwrap/sys/lseek.c b/bsp/libwrap/sys/lseek.c
index 46f58fa..4131449 100644
--- a/bsp/libwrap/sys/lseek.c
+++ b/bsp/libwrap/sys/lseek.c
@@ -4,6 +4,7 @@
#include <unistd.h>
#include <sys/types.h>
#include "stub.h"
+#include "weak_under_alias.h"
off_t __wrap_lseek(int fd, off_t ptr, int dir)
{
@@ -12,3 +13,4 @@ off_t __wrap_lseek(int fd, off_t ptr, int dir)
return _stub(EBADF);
}
+weak_under_alias(lseek);