diff --git a/mk4/continuity/mecha/fle.c b/mk4/continuity/mecha/fle.c index 06089f9742e16a0c9bb2dff0e577763a5d6bc627..fc642394822afdd6b5f223a2fcc7f5d7015ad5c4 100644 --- a/mk4/continuity/mecha/fle.c +++ b/mk4/continuity/mecha/fle.c @@ -206,11 +206,7 @@ int fleFsync_mem_to_file(char *filename, const char *memory, size_t len) } int fleFexist(const char *filename) { -#ifndef _LP64 struct stat sb; -#else - struct stat64 sb; -#endif assert(filename!=NULL); @@ -224,11 +220,7 @@ int fleFexist(const char *filename) { /* How can this return -1 if it's not a ssize_t? -aleigh */ size_t fleFget_size(const char *filename) { -#ifndef _LP64 struct stat sb; -#else - struct stat64 sb; -#endif assert(filename != NULL);