Skip to content
Snippets Groups Projects
foo.c 120 B
Newer Older
jdh8d's avatar
jdh8d committed
#include <stdlib.h>
#include <stdio.h>

extern int foo();

int main()
{
	foo();
}

int foo2()
{
	printf("In foo2\n");
}