diff options
author | Daniel Leung <daniel.leung@intel.com> | 2012-12-11 08:39:57 -0800 |
---|---|---|
committer | Andrew Boie <andrew.p.boie@intel.com> | 2013-09-18 14:42:28 -0700 |
commit | fccfa414c96061689676a8803e3492f992618486 (patch) | |
tree | 6ef14555491836086905dafff87c428f02f802ce /libsparse/output_file.c | |
parent | 4a280e3dbe002bb5419ec010f89cdc158244e435 (diff) | |
download | core-fccfa414c96061689676a8803e3492f992618486.tar.gz core-fccfa414c96061689676a8803e3492f992618486.tar.bz2 core-fccfa414c96061689676a8803e3492f992618486.zip |
libsparse: Use BIONIC implementation of mmap64()
Change-Id: I63692629d3a62b7aee21202b67241904b1cc9789
Signed-off-by: Daniel Leung <daniel.leung@intel.com>
Diffstat (limited to 'libsparse/output_file.c')
-rw-r--r-- | libsparse/output_file.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libsparse/output_file.c b/libsparse/output_file.c index 5014e4a87..24280227e 100644 --- a/libsparse/output_file.c +++ b/libsparse/output_file.c @@ -46,15 +46,6 @@ #define off64_t off_t #endif -#ifdef __BIONIC__ -extern void* __mmap2(void *, size_t, int, int, int, off_t); -static inline void *mmap64(void *addr, size_t length, int prot, int flags, - int fd, off64_t offset) -{ - return __mmap2(addr, length, prot, flags, fd, offset >> 12); -} -#endif - #define min(a, b) \ ({ typeof(a) _a = (a); typeof(b) _b = (b); (_a < _b) ? _a : _b; }) |