xref: /aosp_15_r20/external/ltp/include/lapi/uinput.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2023 Petr Vorel <[email protected]>
4  */
5 
6 #ifndef LAPI_UINPUT_H__
7 #define LAPI_UINPUT_H__
8 
9 #include <linux/uinput.h>
10 
11 #ifndef UI_GET_SYSNAME
12 # define UI_GET_SYSNAME(len)	_IOC(_IOC_READ, UINPUT_IOCTL_BASE, 44, len)
13 #endif
14 
15 #endif	/* LAPI_UINPUT_H__ */
16