• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
3 extern int doTest();
4 
main()5 int main()
6 {
7     printf("%d\n", doTest()); // Set breakpoint here
8     return 0;
9 }
10