diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-06-02 21:20:21 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-06-02 21:20:21 -0400 |
commit | 6a4b9472fb0a85e55030b37ec3017ba0319e03f9 (patch) | |
tree | 94ad849a3dbc19a5ff5bde6132dae854dadb6d26 /src/stdio/getc_unlocked.c | |
parent | 13b3645c46518e0e2fb91f0d665e60f7a8a44b2b (diff) | |
download | musl-6a4b9472fb0a85e55030b37ec3017ba0319e03f9.tar.gz musl-6a4b9472fb0a85e55030b37ec3017ba0319e03f9.tar.bz2 musl-6a4b9472fb0a85e55030b37ec3017ba0319e03f9.tar.xz musl-6a4b9472fb0a85e55030b37ec3017ba0319e03f9.zip |
add some ugly aliases for LSB ABI compatibility
for some nonsensical reason, glibc's headers use inline functions that
redirect some of the standard functions to ugly nonstandard names (and
likewise for some of their nonstandard functions).
Diffstat (limited to 'src/stdio/getc_unlocked.c')
-rw-r--r-- | src/stdio/getc_unlocked.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdio/getc_unlocked.c b/src/stdio/getc_unlocked.c index 203a1081..b38dad16 100644 --- a/src/stdio/getc_unlocked.c +++ b/src/stdio/getc_unlocked.c @@ -6,3 +6,4 @@ int (getc_unlocked)(FILE *f) } weak_alias (getc_unlocked, fgetc_unlocked); +weak_alias (getc_unlocked, _IO_getc_unlocked); |