mirror of
https://github.com/opnsense/src.git
synced 2026-03-23 03:03:09 -04:00
11 lines
91 B
C
11 lines
91 B
C
x = x;
|
|
if (x == 0) {
|
|
x = 1;
|
|
} else {
|
|
x = 2;
|
|
}
|
|
if (true) {
|
|
x = x;
|
|
} else {
|
|
x = x;
|
|
}
|