blob: c0ad8fd3b94a1eb91435c36703739571df66485d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-options "-Winline" } */
void quit_mined ();
void bottom_line ();
typedef enum { False, True } FLAG;
inline void
nextfile (FLAG exitiflast)
{
if (exitiflast)
quit_mined ();
else
bottom_line ();
nextfile (True);
}
|