dyld-750.5.tar.gz
[apple/dyld.git] / testing / test-cases / static-terminators.dtest / foo.c
1 #include <stddef.h>
2 #include <stdio.h>
3
4 #include "test_support.h"
5
6 extern void libDynamicTerminated();
7
8
9 static __attribute__((destructor))
10 void myTerm()
11 {
12 LOG("foo static terminator");
13 libDynamicTerminated();
14 }
15