1*1f5207b7SJohn Levon extern int a(void);
2*1f5207b7SJohn Levon extern int b(void);
3*1f5207b7SJohn Levon extern int c(void);
4*1f5207b7SJohn Levon 
or(void)5*1f5207b7SJohn Levon static int or(void)
6*1f5207b7SJohn Levon {
7*1f5207b7SJohn Levon 	return a() || b() || c();
8*1f5207b7SJohn Levon }
9*1f5207b7SJohn Levon 
and(void)10*1f5207b7SJohn Levon static int and(void)
11*1f5207b7SJohn Levon {
12*1f5207b7SJohn Levon 	return a() && b() && c();
13*1f5207b7SJohn Levon }
14*1f5207b7SJohn Levon /*
15*1f5207b7SJohn Levon  * check-name: Logical and/or
16*1f5207b7SJohn Levon  */
17*1f5207b7SJohn Levon 
18