From 829685a2910ae4f2731599e4e75bb94521a00540 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sat, 15 Oct 2016 12:17:06 -0700 Subject: [PATCH] Add missing atStat64 define --- include/athena/Global.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/athena/Global.hpp b/include/athena/Global.hpp index af4ff44..2b54a3c 100644 --- a/include/athena/Global.hpp +++ b/include/athena/Global.hpp @@ -58,6 +58,7 @@ typedef struct stat atStat64_t; #define atStat64 stat #else typedef struct stat64 atStat64_t; +#define atStat64 stat64 #endif #ifndef BLOCKSZ