mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
9 lines
153 B
Objective-C
9 lines
153 B
Objective-C
@import Darwin;
|
|
@import myModule;
|
|
|
|
int main()
|
|
{
|
|
int a = isInline(2);
|
|
int b = notInline();
|
|
printf("%d %d\n", a, b); // Set breakpoint here.
|
|
}
|