Home
last modified time | relevance | path

Searched refs:crt_func (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/csu/common/
H A Dcrtend.c27 typedef void (*crt_func)(void); typedef
29 static crt_func __JCR_END__[] __section(".jcr") __used = {
30 (crt_func)0
41 static crt_func __CTOR_END__[] __section(".ctors") __used = {
42 (crt_func)0
44 static crt_func __DTOR_END__[] __section(".dtors") __used = {
45 (crt_func)0
51 crt_func fn; in __do_global_ctors_aux()
56 if (fn == (crt_func)0 || fn == (crt_func)-1) in __do_global_ctors_aux()
H A Dcrtbegin.c28 typedef void (*crt_func)(void); typedef
62 static crt_func __CTOR_LIST__[] __section(".ctors") __used = {
63 (crt_func)-1
65 static crt_func __DTOR_LIST__[] __section(".dtors") __used = {
66 (crt_func)-1
72 crt_func fn; in __do_global_dtors_aux()
81 if (fn == (crt_func)0 || fn == (crt_func)-1) in __do_global_dtors_aux()
102 static crt_func __JCR_LIST__[] __section(".jcr") __used = { };