Commit 15a17e9d 15a17e9da63777935c2b15f3320d44ea4a713bd8 by Sergey Poznyakoff

Include <xalloc.h>

1 parent 6554aa1a
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
23 #endif 23 #endif
24 24
25 #ifdef DMALLOC 25 #ifdef DMALLOC
26 # include <dmalloc.h> 26 # include <dmalloc.h>
27 #endif 27 #endif
28 28
29 #include <errno.h> 29 #include <errno.h>
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
45 #endif 45 #endif
46 46
47 #include <argp.h> 47 #include <argp.h>
48 #include <xalloc.h>
48 49
49 #ifdef HAVE_READLINE_READLINE_H 50 #ifdef HAVE_READLINE_READLINE_H
50 #include <readline/readline.h> 51 #include <readline/readline.h>
...@@ -244,8 +245,6 @@ void util_save_outgoing __P((message_t msg, char *savefile)); ...@@ -244,8 +245,6 @@ void util_save_outgoing __P((message_t msg, char *savefile));
244 void util_error __P((const char *format, ...)); 245 void util_error __P((const char *format, ...));
245 int util_help __P((const struct mail_command_entry *table, char *word)); 246 int util_help __P((const struct mail_command_entry *table, char *word));
246 int util_tempfile __P((char **namep)); 247 int util_tempfile __P((char **namep));
247 void *util_malloc __P((size_t size));
248 void *util_calloc __P((size_t nitems, size_t size));
249 248
250 int ml_got_interrupt __P((void)); 249 int ml_got_interrupt __P((void));
251 void ml_clear_interrupt __P((void)); 250 void ml_clear_interrupt __P((void));
......