mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
9 lines
126 B
C
9 lines
126 B
C
#include <stdio.h>
|
|
|
|
int
|
|
a_MyFunction ()
|
|
{
|
|
// Set a breakpoint here.
|
|
printf ("a is about to return 10.\n");
|
|
return 10;
|
|
}
|