Actually use the myFunc() symbol from the library, and actually run the built executable on macOS.pull/1445/head
parent
16c27bef0b
commit
0543a378ca
6 changed files with 30 additions and 11 deletions
@ -1,5 +1,9 @@ |
||||
int myFunc (void); |
||||
|
||||
int |
||||
main (int argc, char *argv[]) |
||||
{ |
||||
return 0; |
||||
if (myFunc() == 55) |
||||
return 0; |
||||
return 1; |
||||
} |
||||
|
@ -1,4 +1,9 @@ |
||||
int myFunc (void); |
||||
|
||||
int |
||||
main (int argc, char *argv[]) |
||||
{ |
||||
if (myFunc() == 55) |
||||
return 0; |
||||
return 1; |
||||
} |
||||
|
@ -1,5 +1,9 @@ |
||||
int myFunc (void); |
||||
|
||||
int |
||||
main (int argc, char *argv[]) |
||||
{ |
||||
return 0; |
||||
if (myFunc() == 55) |
||||
return 0; |
||||
return 1; |
||||
} |
||||
|
@ -1,5 +1,9 @@ |
||||
int myFunc (void); |
||||
|
||||
int |
||||
main (int argc, char *argv[]) |
||||
{ |
||||
return 0; |
||||
if (myFunc() == 55) |
||||
return 0; |
||||
return 1; |
||||
} |
||||
|
Loading…
Reference in new issue