summaryrefslogtreecommitdiffstats
path: root/usr.bin/awk/awk.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2020-06-10 21:01:32 +0000
committermillert <millert@openbsd.org>2020-06-10 21:01:32 +0000
commit02265e669aa4015740180dd87cc3a1f0908a5dcd (patch)
tree87cce6bd81f67ea1c0f49276ce8ade9a1aa24fff /usr.bin/awk/awk.h
parentUpdate awk to Oct 25, 2018 version. (diff)
downloadwireguard-openbsd-02265e669aa4015740180dd87cc3a1f0908a5dcd.tar.xz
wireguard-openbsd-02265e669aa4015740180dd87cc3a1f0908a5dcd.zip
Update awk to Jan 25, 2019 version.
Diffstat (limited to 'usr.bin/awk/awk.h')
-rw-r--r--usr.bin/awk/awk.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/awk/awk.h b/usr.bin/awk/awk.h
index 2eda23b4fa4..01d0792b73c 100644
--- a/usr.bin/awk/awk.h
+++ b/usr.bin/awk/awk.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: awk.h,v 1.15 2020/06/10 21:00:01 millert Exp $ */
+/* $OpenBSD: awk.h,v 1.16 2020/06/10 21:01:32 millert Exp $ */
/****************************************************************
Copyright (C) Lucent Technologies 1997
All Rights Reserved
@@ -98,9 +98,14 @@ extern Array *symtab;
extern Cell *nrloc; /* NR */
extern Cell *fnrloc; /* FNR */
+extern Cell *fsloc; /* FS */
extern Cell *nfloc; /* NF */
+extern Cell *ofsloc; /* OFS */
+extern Cell *orsloc; /* ORS */
+extern Cell *rsloc; /* RS */
extern Cell *rstartloc; /* RSTART */
extern Cell *rlengthloc; /* RLENGTH */
+extern Cell *subseploc; /* SUBSEP */
/* Cell.tval values: */
#define NUM 01 /* number value is valid */