mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
165 B
15 lines
165 B
|
14 years ago
|
#include "pthread_impl.h"
|
||
|
|
#include "atomic.h"
|
||
|
|
|
||
|
|
void __init_ssp(void)
|
||
|
|
{
|
||
|
|
#ifndef __PIC__
|
||
|
|
__pthread_self_init();
|
||
|
|
#endif
|
||
|
|
}
|
||
|
|
|
||
|
|
void __stack_chk_fail(void)
|
||
|
|
{
|
||
|
|
a_crash();
|
||
|
|
}
|