musl - an implementation of the standard library for Linux-based systems
blob: 49a1f18c03b6626ec84f643e10c670a6493560aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include <stddef.h>
#include <dynlink.h>
ptrdiff_t __tlsdesc_static()
{
return 0;
}
weak_alias(__tlsdesc_static, __tlsdesc_dynamic);
|