aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorokan2013-12-17 16:12:18 +0000
committerokan2013-12-17 16:12:18 +0000
commitbf4effc9e59ee91f448e17c89c04b5e23944541d (patch)
tree8f03c34b5ed858e5b793b09eff96f56243f38492
parentf0ed7b1f525d21c88da75575c8899a6c013743a0 (diff)
downloadcwm-bf4effc9e59ee91f448e17c89c04b5e23944541d.tar.gz
missing stdarg.h include
-rw-r--r--xmalloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmalloc.c b/xmalloc.c
index c278e72..4bf40a7 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -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>