// Test for message: function declaration is not a prototype [287]
/* lint1-extra-flags: -h -X 351 */
/* expect+1: warning: function declaration is not a prototype [287] */
void no_prototype_declaration();
void prototype_declaration(void);
/* expect+1: warning: function declaration is not a prototype [287] */
typedef void (no_prototype_typedef)();
typedef void (prototype_typedef)(void);
/* expect+1: warning: function declaration is not a prototype [287] */
int no_prototype_sizeof[sizeof(void (*)())];
int prototype_sizeof[sizeof(void (*)(void))];