mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
11 lines
147 B
C++
11 lines
147 B
C++
#include <stdio.h>
|
|
extern "C" int func_from_c();
|
|
extern int func_from_cpp();
|
|
|
|
int
|
|
main()
|
|
{
|
|
func_from_c();
|
|
func_from_cpp();
|
|
return 0;
|
|
}
|