summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-05-10 22:22:43 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-05-10 22:22:43 +0000
commit7bfb1be495394900c5acf6ed0d4bc9dcdb8b123c (patch)
tree23c39845034d30ad1408545a55a600c45bc4325d /lang
parentEnable WAIS support. (diff)
Rename all pwrite()s to deal with this change:
1.24.2.1 Wed May 5 23:19:59 1999 UTC by dt Branch: RELENG_3 Diffs to 1.24 ; Diffs to 1.26 MFC: pread() and pwrite().
Notes
Notes: svn path=/head/; revision=18765
Diffstat (limited to 'lang')
-rw-r--r--lang/pbasic/files/patch-ab53
1 files changed, 53 insertions, 0 deletions
diff --git a/lang/pbasic/files/patch-ab b/lang/pbasic/files/patch-ab
new file mode 100644
index 000000000000..6dc814e8aa95
--- /dev/null
+++ b/lang/pbasic/files/patch-ab
@@ -0,0 +1,53 @@
+--- ./bas8.c.org Fri Aug 11 03:17:25 1995
++++ ./bas8.c Mon May 10 15:18:08 1999
+@@ -10,12 +10,12 @@
+
+ #ifdef __STDC__
+ static void clear_prog(void);
+-static int listl(lpoint), pwrite(filebufp, CHAR *, int), def_fn(int, int);
++static int listl(lpoint), mypwrite(filebufp, CHAR *, int), def_fn(int, int);
+ static lpoint get_end(void);
+ static STR strpat(STR, STR, STR);
+ #else
+ static void clear_prog();
+-static int listl(), pwrite(), def_fn();
++static int listl(), mypwrite(), def_fn();
+ static lpoint get_end();
+ static STR strpat();
+ #endif
+@@ -495,7 +495,7 @@
+ */
+ /*ARGSUSED*/
+ static int
+-pwrite(filebufp fp, CHAR *buf, int len)
++mypwrite(filebufp fp, CHAR *buf, int len)
+ {
+ fp = fp;
+ return((int)write(1, (char *)buf, (unsigned)len));
+@@ -517,7 +517,7 @@
+ */
+ /*ARGSUSED*/
+ static int
+-pwrite(fp, buf, len)
++mypwrite(fp, buf, len)
+ filebufp fp;
+ CHAR *buf;
+ int len;
+@@ -585,7 +585,7 @@
+ Twidth = filedes->bufsiz;
+ }
+ else {
+- outfunc = pwrite;
++ outfunc = mypwrite;
+ curcursor= &cursor;
+ Twidth = ter_width;
+ }
+@@ -806,7 +806,7 @@
+ Twidth = filedes->bufsiz;
+ }
+ else {
+- outfunc = pwrite;
++ outfunc = mypwrite;
+ curcursor= &cursor;
+ Twidth = ter_width;
+ point--;