remove argument name from prototype

This commit is contained in:
Yuichi Nishiwaki 2013-10-10 16:19:10 +09:00
parent bb4131799d
commit 68a7420ba4
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ typedef struct {
} pic_state; } pic_state;
pic_state *pic_open(); pic_state *pic_open();
void pic_close(pic_state *pic); void pic_close(pic_state *);
#endif #endif