mirror of
https://github.com/moparisthebest/pacman
synced 2025-02-28 17:31:52 -05:00
fixed compilation warnings
This commit is contained in:
parent
bf865c2da5
commit
2ab57b6022
@ -63,7 +63,7 @@ typedef struct __config_t {
|
||||
|
||||
#define FREECONF(p) do { if(p) { config_free(p); p = NULL; } } while(0)
|
||||
|
||||
config_t *config_new();
|
||||
config_t *config_new(void);
|
||||
int config_free(config_t *config);
|
||||
int parseconfig(char *file, config_t *config);
|
||||
|
||||
|
@ -31,7 +31,7 @@ typedef struct __list_t {
|
||||
|
||||
#define FREELIST(p) do { if(p) { list_free(p); p = NULL; } } while(0)
|
||||
|
||||
list_t *list_new();
|
||||
list_t *list_new(void);
|
||||
void list_free(list_t* list);
|
||||
list_t *list_add(list_t* list, void *data);
|
||||
int list_count(list_t* list);
|
||||
|
@ -43,7 +43,7 @@ int parseargs(int argc, char **argv);
|
||||
|
||||
void usage(int op, char *myname);
|
||||
|
||||
void version();
|
||||
void version(void);
|
||||
|
||||
char *buildstring(list_t *strlist);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user