apmdlex.l (1de7b4b805ddbf2429da511c053686ac4591ed89) | apmdlex.l (36ad097f9b938c69974304dd8e31d358bf63517f) |
---|---|
1%{ 2/*- 3 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 4 * 5 * APM (Advanced Power Management) Event Dispatcher 6 * 7 * Copyright (c) 1999 Mitsuru IWASAKI <iwasaki@FreeBSD.org> 8 * Copyright (c) 1999 KOIE Hidetaka <koie@suri.co.jp> --- 30 unchanged lines hidden (view full) --- 39#include "apmd.h" 40#include "y.tab.h" 41 42int lineno; 43int first_time; 44%} 45 46/* We don't need it, avoid the warning. */ | 1%{ 2/*- 3 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 4 * 5 * APM (Advanced Power Management) Event Dispatcher 6 * 7 * Copyright (c) 1999 Mitsuru IWASAKI <iwasaki@FreeBSD.org> 8 * Copyright (c) 1999 KOIE Hidetaka <koie@suri.co.jp> --- 30 unchanged lines hidden (view full) --- 39#include "apmd.h" 40#include "y.tab.h" 41 42int lineno; 43int first_time; 44%} 45 46/* We don't need it, avoid the warning. */ |
47%option noyywrap |
|
47%option nounput 48%option noinput 49 50%s TOP 51 52%% 53 54%{ --- 65 unchanged lines hidden --- | 48%option nounput 49%option noinput 50 51%s TOP 52 53%% 54 55%{ --- 65 unchanged lines hidden --- |