blob: 874c17c420d250d87a6482c5964e3b258717ac1d [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From e5a48f84db58ffb9128383eaefc123b5829523e5 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 23 Oct 2017 12:33:22 -0700
4Subject: [PATCH 13/24] test-hexdecoct.c: Include missing.h for strndupa
5
6Upstream-Status: Inappropriate [musl specific]
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
10---
11 src/test/test-hexdecoct.c | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/src/test/test-hexdecoct.c b/src/test/test-hexdecoct.c
15index 5221742..a05e778 100644
16--- a/src/test/test-hexdecoct.c
17+++ b/src/test/test-hexdecoct.c
18@@ -6,6 +6,7 @@
19 #include "hexdecoct.h"
20 #include "macro.h"
21 #include "string-util.h"
22+#include "missing.h"
23
24 static void test_hexchar(void) {
25 assert_se(hexchar(0xa) == 'a');
26--
272.7.4
28