client: reorder function declarations

Change the order of function declarations in client.h, to make it well
arranged and readable.
This commit is contained in:
Max Kellermann 2008-08-29 09:36:40 +02:00
parent e743d71b89
commit 2c8aa8efde

View File

@ -22,11 +22,12 @@
#include "os_compat.h"
void client_manager_init(void);
void client_new(int fd, const struct sockaddr *addr);
void client_manager_deinit(void);
int client_manager_io(void);
void client_manager_expire(void);
void client_new(int fd, const struct sockaddr *addr);
int client_print(int fd, const char *buffer, size_t len);
int client_manager_io(void);
#endif