mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 12:14:42 +00:00
f5ba2bc9ca
this commit is part of an effort to make more of busybox work out-of-the-box.
17 lines
190 B
C
17 lines
190 B
C
#ifndef _SYS_INOTIFY_H
|
|
#define _SYS_INOTIFY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
|
|
ssize_t sendfile(int, int, off_t *, size_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|