8 lines
91 B
C
8 lines
91 B
C
#include <stdio.h>
|
|
#include "foo.h"
|
|
|
|
int foo() {
|
|
printf("I am foo\n");
|
|
return 0;
|
|
}
|