diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 87ceaaf..dbd2a41 100644 --- a/src/common.h +++ b/src/common.h @@ -131,6 +131,7 @@ char *generate_guid(void); #include <unistd.h> #define __mkdir(path, mode) mkdir(path) #define FMT_qu "%I64u" +#define FMT_016llx "%016I64x" #ifndef sleep #define sleep(x) Sleep(x*1000) #endif @@ -139,6 +140,7 @@ char *generate_guid(void); #include <sys/stat.h> #define __mkdir(path, mode) mkdir(path, mode) #define FMT_qu "%qu" +#define FMT_016llx "%016llx" #define __usleep(x) usleep(x) #endif |