X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/agedu/blobdiff_plain/2d47a4d22421f562b7315ce139395b031eb0485b..f4592adf2a5b6521f5dcf28c133fae48c6cd8828:/agedu.h diff --git a/agedu.h b/agedu.h index 8e2548c..b0052f0 100644 --- a/agedu.h +++ b/agedu.h @@ -102,12 +102,12 @@ extern char pathsep; #if defined HAVE_LSTAT64 && HAVE_STAT64 #define STRUCT_STAT struct stat64 -#define LSTAT lstat64 -#define STAT stat64 +#define LSTAT_FUNC lstat64 +#define STAT_FUNC stat64 #else #define STRUCT_STAT struct stat -#define LSTAT lstat -#define STAT stat +#define LSTAT_FUNC lstat +#define STAT_FUNC stat #endif #define max(x,y) ( (x) > (y) ? (x) : (y) )