blob: 7ebc398180ddb1b61f74e7eca8f8cab8d4184b50 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From 2a3ab04bbdc4624792886aa51579eadb427ef99e Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 27 Jun 2017 07:42:11 -0700
4Subject: [PATCH] memory.h: Include stdint.h for uintptr_t
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8 src/libstrongswan/utils/utils/memory.h | 2 ++
9 1 file changed, 2 insertions(+)
10
11diff --git a/src/libstrongswan/utils/utils/memory.h b/src/libstrongswan/utils/utils/memory.h
12index b978e7c..55aaaf5 100644
13--- a/src/libstrongswan/utils/utils/memory.h
14+++ b/src/libstrongswan/utils/utils/memory.h
15@@ -22,6 +22,8 @@
16 #ifndef MEMORY_H_
17 #define MEMORY_H_
18
19+#include <stdint.h>
20+
21 /**
22 * Helper function that compares two binary blobs for equality
23 */
24--
252.13.2
26