diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 19:22:06 +0000 |
commit | 5ecaa3a7f798e0da8bd46ed1757c21c0d6334505 (patch) | |
tree | 6947e7c36a88bbb00e0a950ee6b33e2aaf6254ff /src/common/uniwin.h | |
parent | Adding upstream version 0.17.0. (diff) | |
download | rnp-5ecaa3a7f798e0da8bd46ed1757c21c0d6334505.tar.xz rnp-5ecaa3a7f798e0da8bd46ed1757c21c0d6334505.zip |
Adding upstream version 0.17.1.upstream/0.17.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/common/uniwin.h')
-rw-r--r-- | src/common/uniwin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/uniwin.h b/src/common/uniwin.h index 095c325..b7e2b52 100644 --- a/src/common/uniwin.h +++ b/src/common/uniwin.h @@ -35,9 +35,9 @@ #include <direct.h> /* for _getcwd() and _chdir() */ #ifdef _WIN64 -#define ssize_t __int64 +typedef __int64 ssize_t; #else -#define ssize_t long +typedef long ssize_t; #endif #define STDIN_FILENO 0 |