14 lines
274 B
C
14 lines
274 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*
|
|
* This file may be redistributed under the terms of the GNU General Public License.
|
|
*/
|
|
#ifndef UTIL_LINUX_PAGER
|
|
#define UTIL_LINUX_PAGER
|
|
|
|
void pager_redirect(void);
|
|
|
|
void pager_open(void);
|
|
void pager_close(void);
|
|
|
|
#endif
|