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