mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
14 lines
176 B
C
14 lines
176 B
C
#ifndef RTC_H
|
|
#define RTC_H
|
|
|
|
|
|
#define RTCIO_PIE_ON _IO('p', 0x05)
|
|
#define RTCIO_IRQP_SET _IO('p', 0x0c)
|
|
|
|
#ifndef M_WAITOK
|
|
#define M_WAITOK 0x0000
|
|
#endif
|
|
|
|
#endif /* RTC_H */
|
|
|