diff options
author | okan | 2013-12-17 16:12:18 +0000 |
---|---|---|
committer | okan | 2013-12-17 16:12:18 +0000 |
commit | bf4effc9e59ee91f448e17c89c04b5e23944541d (patch) | |
tree | 8f03c34b5ed858e5b793b09eff96f56243f38492 /xmalloc.c | |
parent | f0ed7b1f525d21c88da75575c8899a6c013743a0 (diff) | |
download | cwm-bf4effc9e59ee91f448e17c89c04b5e23944541d.tar.gz |
missing stdarg.h include
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: xmalloc.c,v 1.11 2012/11/28 14:32:44 okan Exp $ + * $OpenBSD: xmalloc.c,v 1.12 2013/12/17 16:12:18 okan Exp $ */ #include <sys/param.h> @@ -23,6 +23,7 @@ #include <err.h> #include <errno.h> +#include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> |