release 1.2.5
[musl.git] / src / errno / __errno_location.c
blob7f9d6027a276a0b5574362f0e9aa547fed213523
1 #include <errno.h>
2 #include "pthread_impl.h"
4 int *__errno_location(void)
6 return &__pthread_self()->errno_val;
9 weak_alias(__errno_location, ___errno_location);