BUILD/MINOR: memory: stdint is needed for uintptr_t

stdint.h is needed on OpenBSD for uintptr_t type.
diff --git a/include/common/memory.h b/include/common/memory.h
index 9ec9fc7..fce0d5f 100644
--- a/include/common/memory.h
+++ b/include/common/memory.h
@@ -26,6 +26,7 @@
 
 #include <stdlib.h>
 #include <string.h>
+#include <stdint.h>
 
 #include <common/config.h>
 #include <common/mini-clist.h>