summaryrefslogtreecommitdiff
path: root/arg.h
diff options
context:
space:
mode:
authorLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1990-03-27 04:46:23 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1990-03-27 04:46:23 +0000
commit0f85fab05fafa513bd55a9e1ab280aac5567e27a (patch)
tree104b9667181305a6dce5f73bb4d23518f8ba0b2e /arg.h
parentb1248f16cd8cccfb12ae16cd8e7e93dd53dc52bf (diff)
downloadperl-0f85fab05fafa513bd55a9e1ab280aac5567e27a.tar.gz
perl 3.0 patch #18 patch #16, continued
See patch #16.
Diffstat (limited to 'arg.h')
-rw-r--r--arg.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/arg.h b/arg.h
index 1082142d4e..2406cb9e46 100644
--- a/arg.h
+++ b/arg.h
@@ -1,4 +1,4 @@
-/* $Header: arg.h,v 3.0.1.4 90/03/12 16:18:21 lwall Locked $
+/* $Header: arg.h,v 3.0.1.5 90/03/27 15:29:41 lwall Locked $
*
* Copyright (c) 1989, Larry Wall
*
@@ -6,6 +6,9 @@
* as specified in the README file that comes with the perl 3.0 kit.
*
* $Log: arg.h,v $
+ * Revision 3.0.1.5 90/03/27 15:29:41 lwall
+ * patch16: MSDOS support
+ *
* Revision 3.0.1.4 90/03/12 16:18:21 lwall
* patch13: added list slice operator (LIST)[LIST]
* patch13: added splice operator: @oldelems = splice(@array,$offset,$len,LIST)
@@ -267,7 +270,8 @@
#define O_GETPEERNAME 240
#define O_LSLICE 241
#define O_SPLICE 242
-#define MAXO 243
+#define O_BINMODE 243
+#define MAXO 244
#ifndef DOINIT
extern char *opname[];
@@ -516,7 +520,8 @@ char *opname[] = {
"GETPEERNAME",
"LSLICE",
"SPLICE",
- "243"
+ "BINMODE",
+ "244"
};
#endif
@@ -892,6 +897,7 @@ char opargs[MAXO+1] = {
A(1,0,0), /* GETPEERNAME */
A(0,3,3), /* LSLICE */
A(0,3,1), /* SPLICE */
+ A(1,0,0), /* BINMODE */
0
};
#undef A