Mercurial > hg > xemacs-beta
comparison src/tparam.c @ 458:c33ae14dd6d0 r21-2-44
Import from CVS: tag r21-2-44
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:42:25 +0200 |
parents | 74fd4e045ea6 |
children | e9a3f8b4de53 |
comparison
equal
deleted
inserted
replaced
457:4b9290a33024 | 458:c33ae14dd6d0 |
---|---|
28 #include <string.h> | 28 #include <string.h> |
29 | 29 |
30 #define realloc xrealloc | 30 #define realloc xrealloc |
31 #define malloc xmalloc | 31 #define malloc xmalloc |
32 #define free xfree | 32 #define free xfree |
33 extern void *xmalloc (int size); | 33 extern void *xmalloc (size_t size); |
34 extern void *xrealloc (void *, int size); | 34 extern void *xrealloc (void *, size_t size); |
35 | 35 |
36 #else /* emacs */ | 36 #else /* emacs */ |
37 | 37 |
38 #ifdef STDC_HEADERS | 38 #ifdef STDC_HEADERS |
39 #include <stdlib.h> | 39 #include <stdlib.h> |