rand command, beginning netcfg, consolidated some .c files

This commit is contained in:
joonicks
2018-04-14 02:52:08 +02:00
parent 3bd6854e09
commit bce8bcbfc7
25 changed files with 763 additions and 612 deletions

6
config/sendfile.c Normal file
View File

@@ -0,0 +1,6 @@
#include <sys/sendfile.h>
void test(int to, int from, off_t offset, size_t ct)
{
sendfile(to, from, &offset, ct);
}