seatd/include/evdev.h

13 lines
227 B
C
Raw Normal View History

#ifndef _SEATD_EVDEV_H
#define _SEATD_EVDEV_H
int evdev_revoke(int fd);
int path_is_evdev(const char *path);
2022-03-04 06:10:27 +03:00
#if defined(__linux__) || defined(__NetBSD__)
#include <sys/types.h>
int dev_is_evdev(dev_t device);
#endif
#endif