1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 21:43:13 +02:00
This commit is contained in:
Bram Matthys
2004-04-24 23:16:03 +00:00
parent c7dcad793c
commit 00bd34adf4
51 changed files with 4717 additions and 652 deletions
+6 -1
View File
@@ -16,8 +16,13 @@
/* You do want it to work in debug mode yes ? --DrBin */
/* ugly hack GRR */
#if !defined(__GNUC__) && !defined(__common_include__)
#define __attribute__(x) /* nothing */
#endif
extern char *ircvsprintf(char *str, const char *format, va_list);
extern char *ircsprintf(char *str, const char *format, ...);
extern char *ircsprintf(char *str, const char *format, ...) __attribute__((format(printf,2,3)));
extern const char atoi_tab[4000];