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
|
|
b_MyFunction ()
|
|
{
|
|
// Set a breakpoint here.
|
|
printf ("b is about to return 20.\n");
|
|
return 20;
|
|
}
|