Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
147 B
C++
Raw Permalink Normal View History

#include <stdio.h>
extern "C" int func_from_c();
extern int func_from_cpp();
int
main()
{
func_from_c();
func_from_cpp();
return 0;
}