]> git.saurik.com Git - apple/libc.git/blobdiff - string/FreeBSD/swab.c.patch
Libc-825.24.tar.gz
[apple/libc.git] / string / FreeBSD / swab.c.patch
diff --git a/string/FreeBSD/swab.c.patch b/string/FreeBSD/swab.c.patch
deleted file mode 100644 (file)
index 5565deb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- swab.c.bsdnew      2009-11-18 18:24:38.000000000 -0800
-+++ swab.c     2009-11-18 18:40:17.000000000 -0800
-@@ -45,6 +45,8 @@ swab(const void * __restrict from, void 
-       int n;
-       char *fp, *tp;
-+      if (len <= 0)
-+              return;
-       n = len >> 1;
-       fp = (char *)from;
-       tp = (char *)to;