various legacy and linux-specific stuff

this commit is part of an effort to make more of busybox work
out-of-the-box.
This commit is contained in:
Rich Felker
2011-03-18 21:52:26 -04:00
parent fc27b96c7d
commit f5ba2bc9ca
7 changed files with 122 additions and 1 deletions

16
include/sys/sendfile.h Normal file
View File

@ -0,0 +1,16 @@
#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