1--- mcrlf.c~
2+++ mcrlf.c
3@@ -1,14 +1,4 @@
4-#if F1
5 int f1() { return 0; }
6-#elif F2
7-int f2() { return 0; }
8-#elif F3
9-int f3() { return 0; }
10-#elif F4
11-int f4() { return 0; }
12-#else
13-int f() { return 0; }
14-#endif
15 \/
16 /\
17 comment
18--- mif1.c~
19+++ mif1.c
20@@ -5,18 +5,12 @@
21 #include <stdio.h>
22 #include <stdlib.h>
23
24-#if FOO
25 int foo() { return 0; }
26-#else
27-#error FOO not defined
28-#endif
29
30 #if BAR
31 int foo() { return 0; }
32-#elif FOO
33-int bar() { return 0; }
34 #else
35-#error FOO not defined
36+int bar() { return 0; }
37 #endif
38
39 int main()
40