diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-11-14 14:52:21 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-11-21 09:13:08 -0500 |
commit | 1108f9cfac5b78fc9660174aa4df592ecd87d287 (patch) | |
tree | 8cda73eeb5a3b0594f37aab32ced841bd6dc7916 /src/durango.c | |
parent | 0daee9eb57c826da120edf35c50e8947a43f19b2 (diff) |
Remove unrequired large file descriptor partial support
The LFS "transitional extension" API is deprecated and is not available on FreeBSD.
Large file support (64 bit) is not required on the geode 32 bit only architecture.
There are some hints that the LFS transional extension API were not used
correclty. The variable holding the value is held in an unsigned long rather
than in off_t. The msr open call did not use the O_LARGEFILE flag and did not
check for EOVERFLOW.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'src/durango.c')
-rw-r--r-- | src/durango.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/durango.c b/src/durango.c index 9d6970b..8795d41 100644 --- a/src/durango.c +++ b/src/durango.c @@ -32,8 +32,6 @@ #include "config.h" #endif -#define _LARGEFILE64_SOURCE - #include <unistd.h> #include <errno.h> #include <compiler.h> |