mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 09:56:47 -05:00
14 lines
129 B
Text
14 lines
129 B
Text
|
|
/* $FreeBSD$ */
|
||
|
|
/* See r303485 */
|
||
|
|
void
|
||
|
|
t(void)
|
||
|
|
{
|
||
|
|
static const struct {
|
||
|
|
int a;
|
||
|
|
int b;
|
||
|
|
} c[] = {
|
||
|
|
{D, E},
|
||
|
|
{F, G}
|
||
|
|
};
|
||
|
|
}
|