about summary refs log tree commit diff
path: root/include/time.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-10-01 14:33:26 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-10-01 14:34:40 -0700
commitef9b6f73f45a46d079018f63e2d9184eaa0db1d5 (patch)
tree24b219357cedb237a2c55ac90f42f47ada16b154 /include/time.h
parent8da92e722ca66e35003abf64a77ae529f9989e6a (diff)
downloadglibc-ef9b6f73f45a46d079018f63e2d9184eaa0db1d5.tar.gz
glibc-ef9b6f73f45a46d079018f63e2d9184eaa0db1d5.tar.xz
glibc-ef9b6f73f45a46d079018f63e2d9184eaa0db1d5.zip
Mark 3 *_internal functions with attribute_hidden [BZ #18822]
Mark __ptsname_internal, __mktime_internal and __fopen_internal with
attribute_hidden to allow direct access to them within libc.so and
libc.a without using GOT nor PLT.

	[BZ #18822]
	* include/stdlib.h (__ptsname_internal): Add attribute_hidden.
	* include/time.h (__mktime_internal): Likewise.
	* libio/iolibio.h (__fopen_internal): Likewise.
Diffstat (limited to 'include/time.h')
-rw-r--r--include/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h
index 324913214f..870b7eb93c 100644
--- a/include/time.h
+++ b/include/time.h
@@ -54,7 +54,7 @@ extern void __tz_compute (time_t timer, struct tm *tm, int use_localtime)
 extern time_t __mktime_internal (struct tm *__tp,
 				 struct tm *(*__func) (const time_t *,
 						       struct tm *),
-				 time_t *__offset);
+				 time_t *__offset) attribute_hidden;
 extern struct tm *__localtime_r (const time_t *__timer,
 				 struct tm *__tp) attribute_hidden;