Deleted Added
full compact
1c1
< /* $OpenBSD: xmalloc.h,v 1.9 2002/06/19 00:27:55 deraadt Exp $ */
---
> /* $OpenBSD: xmalloc.h,v 1.13 2006/08/03 03:34:42 deraadt Exp $ */
19,21d18
< #ifndef XMALLOC_H
< #define XMALLOC_H
<
23c20,21
< void *xrealloc(void *, size_t);
---
> void *xcalloc(size_t, size_t);
> void *xrealloc(void *, size_t, size_t);
26,27c24,26
<
< #endif /* XMALLOC_H */
---
> int xasprintf(char **, const char *, ...)
> __attribute__((__format__ (printf, 2, 3)))
> __attribute__((__nonnull__ (2)));