diff options
author | kn <kn@cvs.openbsd.org> | 2020-06-22 13:14:48 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2020-06-22 13:14:48 +0000 |
commit | 470c28e91f901df355126e816e3cac5250ab0fb8 (patch) | |
tree | 17f9a16135b0a0e2260509499d8f3f2685f37e3e /usr.sbin/btrace | |
parent | 02c0a4e2c19959c0fdff5169e422d9889b469fbd (diff) |
Fix "the symbol HZ is undefined" yacc warning
OK mpi
Diffstat (limited to 'usr.sbin/btrace')
-rw-r--r-- | usr.sbin/btrace/bt_parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/btrace/bt_parse.y b/usr.sbin/btrace/bt_parse.y index 1eb54353cd9..02407d4062c 100644 --- a/usr.sbin/btrace/bt_parse.y +++ b/usr.sbin/btrace/bt_parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: bt_parse.y,v 1.13 2020/04/24 15:10:41 mpi Exp $ */ +/* $OpenBSD: bt_parse.y,v 1.14 2020/06/22 13:14:47 kn Exp $ */ /* * Copyright (c) 2019 - 2020 Martin Pieuchot <mpi@openbsd.org> @@ -98,7 +98,7 @@ static void yyerror(const char *, ...); static int yylex(void); %} -%token ERROR OP_EQ OP_NEQ BEGIN END +%token ERROR OP_EQ OP_NEQ BEGIN END HZ /* Builtins */ %token BUILTIN PID TID /* Functions and Map operators */ |