From b41bd5bc83b23f62f6f0815d20ed1e1185c58086 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 31 Aug 2017 18:25:55 +0200 Subject: posix: Remove internal_function attribute --- sysdeps/unix/sysv/linux/pwritev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix/sysv/linux/pwritev.c') diff --git a/sysdeps/unix/sysv/linux/pwritev.c b/sysdeps/unix/sysv/linux/pwritev.c index 7545cb3..cfe6506 100644 --- a/sysdeps/unix/sysv/linux/pwritev.c +++ b/sysdeps/unix/sysv/linux/pwritev.c @@ -33,7 +33,7 @@ pwritev (int fd, const struct iovec *vector, int count, off_t offset) } # else static ssize_t __atomic_pwritev_replacement (int, const struct iovec *, - int, off_t) internal_function; + int, off_t); ssize_t pwritev (int fd, const struct iovec *vector, int count, off_t offset) { @@ -45,7 +45,7 @@ pwritev (int fd, const struct iovec *vector, int count, off_t offset) # endif return __atomic_pwritev_replacement (fd, vector, count, offset); } -# define PWRITEV static internal_function __atomic_pwritev_replacement +# define PWRITEV static __atomic_pwritev_replacement # define PWRITE __pwrite # define OFF_T off_t # include -- cgit v1.1