Sprinkling the source with static and attributes.
This commit is contained in:
parent
0b9175e998
commit
1401faf608
28 changed files with 159 additions and 160 deletions
|
|
@ -18,9 +18,9 @@ extern char *const xalloc_msg_memory_exhausted;
|
|||
/* FIXME: describe */
|
||||
extern void (*xalloc_fail_func) ();
|
||||
|
||||
void *xmalloc PARAMS ((size_t n));
|
||||
void *xmalloc_and_zero PARAMS ((size_t n));
|
||||
void *xmalloc PARAMS ((size_t n)) __attribute__ ((malloc));
|
||||
void *xmalloc_and_zero PARAMS ((size_t n)) __attribute__ ((malloc));
|
||||
void *xcalloc PARAMS ((size_t n, size_t s));
|
||||
void *xrealloc PARAMS ((void *p, size_t n));
|
||||
void *xrealloc PARAMS ((void *p, size_t n)) __attribute__ ((malloc));
|
||||
|
||||
char *xstrdup PARAMS ((const char *s));
|
||||
char *xstrdup PARAMS ((const char *s)) __attribute__ ((malloc));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue