zfs/include/sys/uio.h

12 lines
152 B
C

#ifndef _SPL_UIO_H
#define _SPL_UIO_H
typedef enum uio_rw {
UIO_READ = 0,
UIO_WRITE = 1,
} uio_rw_t;
#define UIO_SYSSPACE 1
#endif /* SPL_UIO_H */