make ldso asm more uniform with rest of codebase (no unnecessary suffixes)
[musl] / src / thread / pthread_attr_getguardsize.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getguardsize(const pthread_attr_t *a, size_t *size)
4 {
5         *size = a->_a_guardsize + DEFAULT_GUARD_SIZE;
6         return 0;
7 }