blob: 088d685af00a825c8a3003d104bf98a220becd70 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001From a6c9366bfbcef6f3f4bb068b1f1a5623935b5013 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 5 Nov 2019 20:05:08 -0800
4Subject: [PATCH] include stdint.h for getting uintptr_t definition
Brad Bishop1d80a2e2019-11-15 16:35:03 -05005
6fixes do_compile_ptest_base
7tests/fanotify_mark.c:191:23: error: 'uintptr_t' undeclared (first use in this function); did you mean 'intptr_t'?
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
Andrew Geissler82c905d2020-04-13 13:39:40 -050011
12---
13 tests/fanotify_mark.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/tests/fanotify_mark.c b/tests/fanotify_mark.c
17index aade643..de579f3 100644
Brad Bishop1d80a2e2019-11-15 16:35:03 -050018--- a/tests/fanotify_mark.c
19+++ b/tests/fanotify_mark.c
20@@ -18,6 +18,7 @@
21
22 # include <limits.h>
23 # include <stdio.h>
24+# include <stdint.h>
25 # include <unistd.h>
26 # include <sys/fanotify.h>
27