summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-04 03:10:45 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-04 03:10:45 +0000
commite1982ac32aa0edf24703d210861df504409bfa91 (patch)
tree37ec7f99081a58b99133208fabe75d14d5df8e4e /libc/string
parentcb1941ccfc7193d0534fce862ff49e16c194d74f (diff)
fix building
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/ia64/bzero.S2
-rw-r--r--libc/string/ia64/memccpy.S2
-rw-r--r--libc/string/ia64/memchr.S2
-rw-r--r--libc/string/ia64/memcmp.S2
-rw-r--r--libc/string/ia64/memcpy.S2
-rw-r--r--libc/string/ia64/memmove.S2
-rw-r--r--libc/string/ia64/memset.S2
-rw-r--r--libc/string/ia64/strchr.S2
-rw-r--r--libc/string/ia64/strcmp.S2
-rw-r--r--libc/string/ia64/strcpy.S2
-rw-r--r--libc/string/ia64/strlen.S2
-rw-r--r--libc/string/ia64/strncmp.S2
-rw-r--r--libc/string/ia64/strncpy.S2
13 files changed, 13 insertions, 13 deletions
diff --git a/libc/string/ia64/bzero.S b/libc/string/ia64/bzero.S
index bcca41d5e..0e2ff09cc 100644
--- a/libc/string/ia64/bzero.S
+++ b/libc/string/ia64/bzero.S
@@ -32,7 +32,7 @@
Since a stf.spill f0 can store 16B in one go, we use this instruction
to get peak speed. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define dest in0
diff --git a/libc/string/ia64/memccpy.S b/libc/string/ia64/memccpy.S
index 53c43c512..1afba3637 100644
--- a/libc/string/ia64/memccpy.S
+++ b/libc/string/ia64/memccpy.S
@@ -31,7 +31,7 @@
This implementation assumes that it is safe to do read ahead
in the src block, without getting beyond its limit. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define OP_T_THRES 16
diff --git a/libc/string/ia64/memchr.S b/libc/string/ia64/memchr.S
index d7742fe8a..2bf078fe6 100644
--- a/libc/string/ia64/memchr.S
+++ b/libc/string/ia64/memchr.S
@@ -40,7 +40,7 @@
All the loops in this function could have had the internal branch removed
if br.ctop and br.cloop could be predicated :-(. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define saved_pr r15
diff --git a/libc/string/ia64/memcmp.S b/libc/string/ia64/memcmp.S
index 997dad9d4..c6ea7529b 100644
--- a/libc/string/ia64/memcmp.S
+++ b/libc/string/ia64/memcmp.S
@@ -33,7 +33,7 @@
and all the mux1 instructions should be replaced by plain mov's. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define OP_T_THRES 16
diff --git a/libc/string/ia64/memcpy.S b/libc/string/ia64/memcpy.S
index 34a3706e0..db019f860 100644
--- a/libc/string/ia64/memcpy.S
+++ b/libc/string/ia64/memcpy.S
@@ -37,7 +37,7 @@
#define USE_LFETCH
#define USE_FLP
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define LFETCH_DIST 500
diff --git a/libc/string/ia64/memmove.S b/libc/string/ia64/memmove.S
index 65f5b0383..0328f84de 100644
--- a/libc/string/ia64/memmove.S
+++ b/libc/string/ia64/memmove.S
@@ -33,7 +33,7 @@
sh1 must be computed using an extra instruction: sub sh1 = 64, sh1
or the UM.be bit should be cleared at the beginning and set at the end. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define OP_T_THRES 16
diff --git a/libc/string/ia64/memset.S b/libc/string/ia64/memset.S
index 6754cfb88..ed27f3f31 100644
--- a/libc/string/ia64/memset.S
+++ b/libc/string/ia64/memset.S
@@ -33,7 +33,7 @@
Since a stf.spill f0 can store 16B in one go, we use this instruction
to get peak speed when value = 0. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define dest in0
diff --git a/libc/string/ia64/strchr.S b/libc/string/ia64/strchr.S
index 24001eea6..7d1a0834e 100644
--- a/libc/string/ia64/strchr.S
+++ b/libc/string/ia64/strchr.S
@@ -30,7 +30,7 @@
This implementation assumes little endian mode. For big endian mode,
the instruction czx1.r should be replaced by czx1.l. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define saved_lc r18
diff --git a/libc/string/ia64/strcmp.S b/libc/string/ia64/strcmp.S
index 180b5524f..fe7e201c1 100644
--- a/libc/string/ia64/strcmp.S
+++ b/libc/string/ia64/strcmp.S
@@ -27,7 +27,7 @@
Unlike memcmp(), this function is optimized for mismatches within the
first few characters. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define s1 in0
diff --git a/libc/string/ia64/strcpy.S b/libc/string/ia64/strcpy.S
index bee5bf7c2..e4a9915ca 100644
--- a/libc/string/ia64/strcpy.S
+++ b/libc/string/ia64/strcpy.S
@@ -31,7 +31,7 @@
shr.u tmp = r[0], sh2 // tmp = w1 >> sh2
*/
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define saved_lc r15
diff --git a/libc/string/ia64/strlen.S b/libc/string/ia64/strlen.S
index f5a6ef044..9b27a2d1b 100644
--- a/libc/string/ia64/strlen.S
+++ b/libc/string/ia64/strlen.S
@@ -33,7 +33,7 @@
This implementation assumes little endian mode. For big endian mode,
the instruction czx1.r should be replaced by czx1.l. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define saved_lc r18
diff --git a/libc/string/ia64/strncmp.S b/libc/string/ia64/strncmp.S
index 915ea5aa2..74011650c 100644
--- a/libc/string/ia64/strncmp.S
+++ b/libc/string/ia64/strncmp.S
@@ -28,7 +28,7 @@
Unlike memcmp(), this function is optimized for mismatches within the
first few characters. */
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define s1 in0
diff --git a/libc/string/ia64/strncpy.S b/libc/string/ia64/strncpy.S
index 0a98ea4db..4f1129350 100644
--- a/libc/string/ia64/strncpy.S
+++ b/libc/string/ia64/strncpy.S
@@ -29,7 +29,7 @@
In this form, it assumes little endian mode.
*/
-#include <sysdep.h>
+#include "sysdep.h"
#undef ret
#define saved_lc r15