diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-02-07 14:44:18 -0800 |
commit | f1d70dad5381352b3cad04b5ee0dd0efe2627683 (patch) | |
tree | 09ee58dd09a6fd5f18131b98cc337a001e90fcb2 /csu | |
parent | 7bd642f580ef5698bd5b1777a5ba7af2f58c5d8c (diff) | |
download | glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.gz glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.tar.bz2 glibc-f1d70dad5381352b3cad04b5ee0dd0efe2627683.zip |
Remove lots of inline keywords.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/libc-tls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csu/libc-tls.c b/csu/libc-tls.c index 90daaa61c1..5fa39eb8d1 100644 --- a/csu/libc-tls.c +++ b/csu/libc-tls.c @@ -75,7 +75,7 @@ size_t _dl_tls_generation; TLS_INIT_HELPER #endif -static inline void +static void init_slotinfo (void) { /* Create the slotinfo list. */ @@ -90,7 +90,7 @@ init_slotinfo (void) GL(dl_tls_dtv_slotinfo_list) = &static_slotinfo.si; } -static inline void +static void init_static_tls (size_t memsz, size_t align) { /* That is the size of the TLS memory for this object. The initialized |