mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 09:31:50 -04:00
12 lines
91 B
C
12 lines
91 B
C
x = x;
|
|
if (x == 0) {
|
|
x = 1;
|
|
} else {
|
|
x = 2;
|
|
}
|
|
if (true) {
|
|
x = x;
|
|
} else {
|
|
x = x;
|
|
}
|