~ubuntu-branches/ubuntu/precise/nbd/precise-security

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LFS_H
#define LFS_H

#include "config.h"
#if NBD_LFS
#define _FILE_OFFSET_BITS 64
#ifndef _LARGEFILE_SOURCE
#define _LARGEFILE_SOURCE
#endif
#ifdef HAVE_SYNC_FILE_RANGE
#define USE_SYNC_FILE_RANGE
#define _GNU_SOURCE
#endif /* HAVE_SYNC_FILE_RANGE */
#endif /* NBD_LFS */

#endif /* LFS_H */