mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
15 lines
118 B
C
15 lines
118 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
void
|
||
|
|
AFunction()
|
||
|
|
{
|
||
|
|
printf ("I am a function.\n");
|
||
|
|
}
|
||
|
|
|
||
|
|
int
|
||
|
|
main ()
|
||
|
|
{
|
||
|
|
AFunction();
|
||
|
|
return 0;
|
||
|
|
}
|