diff options
author | 2020-06-13 01:21:01 +0000 | |
---|---|---|
committer | 2020-06-13 01:21:01 +0000 | |
commit | b79e3a7920f32fb4d30ae9a299bd197ec636d727 (patch) | |
tree | 967aeff0d93a05f17178af73bfdde6ec115f71ef /usr.bin/awk/awk.h | |
parent | POSIX doesn't permit an unescaped '/' in an extended regular expression. (diff) | |
download | wireguard-openbsd-b79e3a7920f32fb4d30ae9a299bd197ec636d727.tar.xz wireguard-openbsd-b79e3a7920f32fb4d30ae9a299bd197ec636d727.zip |
Integrate the bsd-features branch from awk github.
Implements the gensub(), systime() and strftime() functions for
greater gawk compatibility.
Diffstat (limited to 'usr.bin/awk/awk.h')
-rw-r--r-- | usr.bin/awk/awk.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/awk/awk.h b/usr.bin/awk/awk.h index 080bf94cc22..d9981a4d228 100644 --- a/usr.bin/awk/awk.h +++ b/usr.bin/awk/awk.h @@ -1,4 +1,4 @@ -/* $OpenBSD: awk.h,v 1.24 2020/06/13 01:19:55 millert Exp $ */ +/* $OpenBSD: awk.h,v 1.25 2020/06/13 01:21:01 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved @@ -159,6 +159,8 @@ extern Cell *symtabloc; /* SYMTAB */ #define FCOMPL 18 #define FLSHIFT 19 #define FRSHIFT 20 +#define FSYSTIME 21 +#define FSTRFTIME 22 /* Node: parse tree is made of nodes, with Cell's at bottom */ |