summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-08-31 15:33:27 +0200
committerFlorian Weimer <fweimer@redhat.com>2017-08-31 15:59:07 +0200
commit18c54facf1ba6125abab0eb6080630c1847e8819 (patch)
treea142e302f16016fe9db85af5b2ba2e3ef68f8e30
parent7e01f080e8231ab38b0896a1cc66c660af4b98e9 (diff)
downloadglibc-18c54facf1ba6125abab0eb6080630c1847e8819.tar.gz
Linux getcwd: Remove internal_function attribute
-rw-r--r--ChangeLog6
-rw-r--r--sysdeps/unix/sysv/linux/getcwd.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f547eeb38..7cbac7a79c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2017-08-31 Florian Weimer <fweimer@redhat.com>
+ * sysdeps/unix/sysv/linux/getcwd.c (generic_getcwd): Remove
+ internal_function.
+ (GETCWD_RETURN_TYPE): Likewise.
+
+2017-08-31 Florian Weimer <fweimer@redhat.com>
+
* include/time.h (__tz_compute, __strptime_internal): Remove
internal_function.
* time/strptime_l.c (__strptime_internal): Likewise.
diff --git a/sysdeps/unix/sysv/linux/getcwd.c b/sysdeps/unix/sysv/linux/getcwd.c
index 3b556fd450..570f061a1a 100644
--- a/sysdeps/unix/sysv/linux/getcwd.c
+++ b/sysdeps/unix/sysv/linux/getcwd.c
@@ -40,7 +40,7 @@
named `cwd'. Reading the content of this link immediate gives us the
information. But we have to take care for systems which do not have
the proc filesystem mounted. Use the POSIX implementation in this case. */
-static char *generic_getcwd (char *buf, size_t size) internal_function;
+static char *generic_getcwd (char *buf, size_t size);
char *
__getcwd (char *buf, size_t size)
@@ -130,6 +130,6 @@ __getcwd (char *buf, size_t size)
weak_alias (__getcwd, getcwd)
/* Get the code for the generic version. */
-#define GETCWD_RETURN_TYPE static char * internal_function
+#define GETCWD_RETURN_TYPE static char *
#define __getcwd generic_getcwd
#include <sysdeps/posix/getcwd.c>