1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-15 00:21:56 +00:00

obtain ioctl from sys/ioctl.h as per manpage

fixed build failure on fedora
This commit is contained in:
Ronny Pfannschmidt 2016-05-28 23:51:13 +02:00
parent f51715223a
commit 7b564e518d

View file

@ -47,7 +47,7 @@ cdef extern from "linux/fs.h":
int FS_APPEND_FL int FS_APPEND_FL
int FS_COMPR_FL int FS_COMPR_FL
cdef extern from "stropts.h": cdef extern from "sys/ioctl.h":
int ioctl(int fildes, int request, ...) int ioctl(int fildes, int request, ...)
cdef extern from "string.h": cdef extern from "string.h":