blob: 3f97522712153258802b77345e5e552046823137 [file] [log] [blame]
extern int a(void);
extern int b(void);
extern int c(void);
static int or(void)
{
return a() || b() || c();
}
static int and(void)
{
return a() && b() && c();
}
/*
* check-name: Logical and/or
*/