diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-06 16:17:56 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:28 -0400 |
commit | 18bf0829a7545b14de3fe241a65298c5f36e8bbc (patch) | |
tree | 173183b30b68a4e84702b390de6383837107ed5f /src/internal/version.c | |
parent | 3b028c28314a43e6fb65f3281149aecae8250f11 (diff) | |
download | musl-18bf0829a7545b14de3fe241a65298c5f36e8bbc.tar.gz musl-18bf0829a7545b14de3fe241a65298c5f36e8bbc.tar.xz musl-18bf0829a7545b14de3fe241a65298c5f36e8bbc.zip |
improve machinery for ldso to report libc version
eliminate gratuitous glue function for reporting the version, which was probably leftover from the old dynamic linker design which lacked a clear barrier for when/how it could access global data. put the declaration for the data object that replaces it in libc.h where it can be type checked.
Diffstat (limited to 'src/internal/version.c')
-rw-r--r-- | src/internal/version.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/internal/version.c b/src/internal/version.c index 0d6e1f82..08bbf5b2 100644 --- a/src/internal/version.c +++ b/src/internal/version.c @@ -1,9 +1,4 @@ #include "version.h" #include "libc.h" -static const char version[] = VERSION; - -hidden const char *__libc_get_version() -{ - return version; -} +const char __libc_version[] = VERSION; |