]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-llvm-options/main.c
ld64-96.5.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-llvm-options / main.c
1
2 #include <stdio.h>
3
4
5 void foo(int x)
6 {
7 printf("hello, world %d\n", x);
8 }
9
10 int main()
11 {
12 foo(10);
13 return 0;
14 }
15