dyld-750.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / dtrace-static-probes / main.c
1
2 #include <stdio.h>
3
4 #include "foo.h"
5
6
7 int main() {
8 for (int i=0; i < 5; ++i) {
9 FOO_COUNT(i);
10 }
11
12 return 0;
13 }