]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/bind_at_load/main.c
ld64-127.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / bind_at_load / main.c
CommitLineData
a645023d
A
1#include <stddef.h>
2
3extern void foo();
4extern void foo2() __attribute__((weak_import));
5extern void bar();
6
7int main()
8{
9 foo();
10 bar();
11 if ( &foo2 != NULL )
12 foo2();
13 return 0;
14}