summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace/uintptr_t.patch
blob: 6d3dd6fb985338093a78d6428158622f86663192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include stdint.h for getting uintptr_t definition

fixes do_compile_ptest_base
tests/fanotify_mark.c:191:23: error: 'uintptr_t' undeclared (first use in this function); did you mean 'intptr_t'?

Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
--- a/tests/fanotify_mark.c
+++ b/tests/fanotify_mark.c
@@ -18,6 +18,7 @@
 
 # include <limits.h>
 # include <stdio.h>
+# include <stdint.h>
 # include <unistd.h>
 # include <sys/fanotify.h>