explicitely declare void function argg and static functions

This commit is contained in:
marschap
2007-04-11 11:48:01 +00:00
parent 25c18aa3df
commit 23f9b667f7
6 changed files with 94 additions and 79 deletions
+6 -6
View File
@@ -1,13 +1,13 @@
#ifndef LCD_LINK_H
#define LCD_LINK_H
extern char * address;
extern char *address;
extern int port;
int connect_and_setup();
int read_response( char * str, int maxsize );
int process_response( char * str );
int update_display();
int send_nop();
int connect_and_setup(void);
int read_response(char *str, int maxsize);
int process_response(char *str);
int update_display(void);
int send_nop(void);
#endif