summaryrefslogtreecommitdiff
path: root/libc/string/mips/memset.S
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-03 21:57:04 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-02-03 21:57:04 +0100
commitb499fe614ac5b492fc0fdc6e1fbbeeb904674159 (patch)
tree9deacfadec1a289fba2ba338bfe8e2398132e152 /libc/string/mips/memset.S
parent5e9a78c8a839381add6faa61e196e6dad9143163 (diff)
mips: fix build if threads are disabled
Reported-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Diffstat (limited to 'libc/string/mips/memset.S')
-rw-r--r--libc/string/mips/memset.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/string/mips/memset.S b/libc/string/mips/memset.S
index ef8ab0b13..43034cebb 100644
--- a/libc/string/mips/memset.S
+++ b/libc/string/mips/memset.S
@@ -21,7 +21,7 @@
# define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
#elif _LIBC
# include <sysdep.h>
-# include <regdef.h>
+# include <sys/regdef.h>
# include <sys/asm.h>
# define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
#elif defined _COMPILING_NEWLIB
@@ -29,7 +29,7 @@
# include "machine/regdef.h"
# define PREFETCH_STORE_HINT PREFETCH_HINT_PREPAREFORSTORE
#else
-# include <regdef.h>
+# include <sys/regdef.h>
# include <sys/asm.h>
#endif