Files
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

8 lines
168 B
C

#ifndef _WEAK_ALIAS_H
#define _WEAK_ALIAS_H
#define weak_alias(name, alias_to) \
extern __typeof (name) alias_to __attribute__((__weak__, __alias__(#name)));
#endif