Skip to content
Snippets Groups Projects

add posix_fallocate64() wrapper

Merged Paper requested to merge (removed):current into current
All threads resolved!
2 files
+ 12
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 11
0
#include <fcntl.h> /* posix_fallocate */
typedef long long off64_t;
/*
* posix_fallocate64: gnu-ified 64-bit posix_fallocate
*/
int posix_fallocate64(int fd, off64_t offset, off64_t len)
{
return posix_fallocate(fd, offset, len);
}
Loading