mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 19:51:31 +00:00
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).
10 lines
184 B
C
10 lines
184 B
C
#include "stdio_impl.h"
|
|
|
|
int (putc_unlocked)(int c, FILE *f)
|
|
{
|
|
return putc_unlocked(c, f);
|
|
}
|
|
|
|
weak_alias(putc_unlocked, fputc_unlocked);
|
|
weak_alias(putc_unlocked, _IO_putc_unlocked);
|