diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:37 +0000 |
commit | a90a5cba08fdf6c0ceb95101c275108a152a3aed (patch) | |
tree | 532507288f3defd7f4dcf1af49698bcb76034855 /memory/build/FdPrintf.h | |
parent | Adding debian version 126.0.1-1. (diff) | |
download | firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'memory/build/FdPrintf.h')
-rw-r--r-- | memory/build/FdPrintf.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/memory/build/FdPrintf.h b/memory/build/FdPrintf.h index 257084243b..ad333c77fd 100644 --- a/memory/build/FdPrintf.h +++ b/memory/build/FdPrintf.h @@ -7,6 +7,12 @@ #ifndef __FdPrintf_h__ #define __FdPrintf_h__ +#ifdef _WIN32 +typedef void* platform_handle_t; +#else +typedef int platform_handle_t; +#endif + /* We can't use libc's (f)printf because it would reenter in replace_malloc, * So use a custom and simplified version. Only %p, %zu, %s and %% are * supported, %zu, %s, support width specifiers. @@ -18,7 +24,7 @@ * APIs is that they don't support O_APPEND in a multi-process-safe way, * while CreateFile does. */ -void FdPrintf(intptr_t aFd, const char* aFormat, ...) +void FdPrintf(platform_handle_t aFd, const char* aFormat, ...) #ifdef __GNUC__ __attribute__((format(printf, 2, 3))) #endif |