diff options
author | 2020-07-30 17:45:44 +0000 | |
---|---|---|
committer | 2020-07-30 17:45:44 +0000 | |
commit | 5df2889f996d079efdf30737094fc024985ec9d1 (patch) | |
tree | 2310df96246ff6f0a2285346f31d43f78e0867ec /usr.bin/awk/parse.c | |
parent | Improved handling of an unescaped '/' in a bracket expression. (diff) | |
download | wireguard-openbsd-5df2889f996d079efdf30737094fc024985ec9d1.tar.xz wireguard-openbsd-5df2889f996d079efdf30737094fc024985ec9d1.zip |
Update awk to July 30, 2020 version.
Diffstat (limited to 'usr.bin/awk/parse.c')
-rw-r--r-- | usr.bin/awk/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/awk/parse.c b/usr.bin/awk/parse.c index b0a25c94e70..8b14f46f4e9 100644 --- a/usr.bin/awk/parse.c +++ b/usr.bin/awk/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.11 2020/06/26 15:57:39 millert Exp $ */ +/* $OpenBSD: parse.c,v 1.12 2020/07/30 17:45:44 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved @@ -28,7 +28,7 @@ THIS SOFTWARE. #include <string.h> #include <stdlib.h> #include "awk.h" -#include "ytab.h" +#include "awkgram.tab.h" Node *nodealloc(int n) { |