]> git.saurik.com Git - apple/ld64.git/blob - FireOpal/unit-tests/test-cases/dtrace-static-probes/main.c
ld64-85.2.1.tar.gz
[apple/ld64.git] / FireOpal / unit-tests / test-cases / dtrace-static-probes / main.c
1
2 #include <stdio.h>
3
4 typedef int weirdType;
5 typedef int weirdType2;
6
7 #include "foo.h"
8 #include "bar.h"
9
10
11 int deadwood()
12 {
13 BAR_COUNT1(2);
14 return 0;
15 }
16
17
18 int main() {
19 int a = 1;
20
21 while(a) {
22 FOO_COUNT1(1);
23 printf("test\n");
24 BAR_COUNT1(2);
25 sleep(1);
26 }
27
28 return 0;
29 }