mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
The bug was that isalnum() is not exactly equivalent to previous code which also allowed characters "$" and "_", so check for those explicitly. Reported by: tuexen@
10 lines
164 B
Text
10 lines
164 B
Text
/* $FreeBSD$ */
|
|
void
|
|
t(void)
|
|
{
|
|
unsigned long x = 314UL;
|
|
double y[] = {0x1P+9F, 0.3, .1, 1.2f, 0xa.p01f, 3.14f, 2.L};
|
|
int z = 0b0101;
|
|
DO_NOTHING;
|
|
x._y = 5;
|
|
}
|