annotate gcc/testsuite/gcc.dg/cpp/mi2c.h @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test for overly eager multiple include optimization.
kono
parents:
diff changeset
2 Problem distilled from glibc 2.0.7's time.h, sys/time.h, timebits.h.
kono
parents:
diff changeset
3 Problem noted by Tom Tromey <tromey@cygnus.com>. */
kono
parents:
diff changeset
4 #ifdef need_x
kono
parents:
diff changeset
5 #undef need_x
kono
parents:
diff changeset
6 #ifndef have_x
kono
parents:
diff changeset
7 #define have_x
kono
parents:
diff changeset
8 extern int x;
kono
parents:
diff changeset
9 #endif
kono
parents:
diff changeset
10 #endif
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 #ifndef t_h
kono
parents:
diff changeset
13 #define t_h
kono
parents:
diff changeset
14 extern int y;
kono
parents:
diff changeset
15 #endif