blob: 8d0e73992f3212f4b9675920d1b457eddd82c82a [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From a2639bd0f0d3f9f3049ee33e6710fed06225f54f Mon Sep 17 00:00:00 2001
2From: Dengke Du <dengke.du@windriver.com>
3Date: Thu, 9 Feb 2017 18:20:58 +0800
4Subject: [PATCH 1/2] fix __WORDSIZE undeclared when building with musl
5
6fix __WORDSIZE undeclared when building with musl.
7
8Signed-off-by: Dengke Du <dengke.du@windriver.com>
9Upstream-Status: Pending
10---
11 include/old/test.h | 3 +++
12 1 file changed, 3 insertions(+)
13
14diff --git a/include/old/test.h b/include/old/test.h
15index d492560..263e92e 100644
16--- a/include/old/test.h
17+++ b/include/old/test.h
18@@ -58,6 +58,9 @@
19 #include "tst_clone.h"
20 #include "old_device.h"
21 #include "old_tmpdir.h"
22+#ifndef __GLIBC__
23+#include <bits/reg.h>
24+#endif
25
26 /*
27 * Ensure that NUMSIGS is defined.
28--
292.7.4
30