summaryrefslogtreecommitdiff
path: root/devel/git-fvcs/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'devel/git-fvcs/patches/patch-ab')
-rw-r--r--devel/git-fvcs/patches/patch-ab25
1 files changed, 0 insertions, 25 deletions
diff --git a/devel/git-fvcs/patches/patch-ab b/devel/git-fvcs/patches/patch-ab
deleted file mode 100644
index b9b3dc61216..00000000000
--- a/devel/git-fvcs/patches/patch-ab
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2007/04/24 16:34:02 dmcmahill Exp $
-
-Avoid conflicting with the wcwidth which exists in libc but
-with a different prototype.
-
---- utf8.c.orig 2007-03-05 02:15:33.000000000 +0000
-+++ utf8.c
-@@ -62,7 +62,7 @@ static int bisearch(ucs_char_t ucs, cons
- * in ISO 10646.
- */
-
--static int wcwidth(ucs_char_t ch)
-+static int git_wcwidth(ucs_char_t ch)
- {
- /*
- * Sorted list of non-overlapping intervals of non-spacing characters,
-@@ -207,7 +207,7 @@ invalid:
- return 0;
- }
-
-- return wcwidth(ch);
-+ return git_wcwidth(ch);
- }
-
- int is_utf8(const char *text)