Line data Source code
1 : #ifndef HELLO_H 2 : #define HELLO_H 3 : 4 : #include <stdio.h> 5 : 6 1 : void covered() { 7 1 : printf("got here 1\n"); 8 1 : } 9 : 10 0 : void uncovered() { 11 0 : printf("got here 2\n"); 12 0 : } 13 : 14 : #endif