aboutsummaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-ar
diff options
context:
space:
mode:
Diffstat (limited to 'news/newsx/files/patch-ar')
-rw-r--r--news/newsx/files/patch-ar25
1 files changed, 25 insertions, 0 deletions
diff --git a/news/newsx/files/patch-ar b/news/newsx/files/patch-ar
new file mode 100644
index 000000000000..fbcab734a8b2
--- /dev/null
+++ b/news/newsx/files/patch-ar
@@ -0,0 +1,25 @@
+--- src/putarticle.c.orig Mon Apr 5 15:01:51 1999
++++ src/putarticle.c Sun Jan 21 11:27:49 2001
+@@ -85,22 +85,6 @@
+
+ static int SM_open = 0;
+
+-#ifndef HAVE_STRTOUL
+-/*
+- * for systems that doesn't have it, assuming base<=10
+- */
+-long
+-strtoul(char *str,char **endptr,int base)
+-{
+- long u = 0L;
+- char c;
+- while (isspace(*str)) ++str;
+- while (isdigit(c = *str++)) u = u*base + c-'0';
+- *endptr = str;
+- return u;
+-}
+-#endif
+-
+ /*
+ * check if header tag
+ */