]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD/MINOR: memory: stdint is needed for uintptr_t
authorDavid Carlier <devnexen@gmail.com>
Sun, 18 Feb 2018 19:36:42 +0000 (19:36 +0000)
committerWilly Tarreau <w@1wt.eu>
Mon, 19 Feb 2018 06:58:50 +0000 (07:58 +0100)
stdint.h is needed on OpenBSD for uintptr_t type.

include/common/memory.h

index 9ec9fc7ef5bfd25f8dc089add897b297567bd9bd..fce0d5fe933a75919d27e3a753f3316aaba75699 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 
 #include <common/config.h>
 #include <common/mini-clist.h>