File:  [DVB] / dietlibc / lib / posix_fallocate.c
Revision 1.2: download - view: text, annotated - select for diffs
Thu Mar 3 18:40:05 2011 UTC (13 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
get rid of lots of socket cruft

#define _GNU_SOURCE
#define _XOPEN_SOURCE 600

#include <fcntl.h>
int posix_fallocate(int fd, off64_t offset, off64_t len) {
  return fallocate(fd,0,offset,len);
}

LinuxTV legacy CVS <linuxtv.org/cvs>