summaryrefslogtreecommitdiffstats
path: root/js/src/ctypes
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:50 +0000
commitdef92d1b8e9d373e2f6f27c366d578d97d8960c6 (patch)
tree2ef34b9ad8bb9a9220e05d60352558b15f513894 /js/src/ctypes
parentAdding debian version 125.0.3-1. (diff)
downloadfirefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.tar.xz
firefox-def92d1b8e9d373e2f6f27c366d578d97d8960c6.zip
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/ctypes')
-rw-r--r--js/src/ctypes/CTypes.cpp4
-rw-r--r--js/src/ctypes/typedefs.h6
2 files changed, 4 insertions, 6 deletions
diff --git a/js/src/ctypes/CTypes.cpp b/js/src/ctypes/CTypes.cpp
index 1296e6cbb9..c684d4ee22 100644
--- a/js/src/ctypes/CTypes.cpp
+++ b/js/src/ctypes/CTypes.cpp
@@ -26,9 +26,7 @@
#include <iterator>
#include <limits>
#include <stdint.h>
-#ifdef HAVE_SSIZE_T
-# include <sys/types.h>
-#endif
+#include <sys/types.h>
#include <type_traits>
#include "jsapi.h"
diff --git a/js/src/ctypes/typedefs.h b/js/src/ctypes/typedefs.h
index 51b020a09f..062c027496 100644
--- a/js/src/ctypes/typedefs.h
+++ b/js/src/ctypes/typedefs.h
@@ -34,10 +34,10 @@
#define ctypes_typedefs_h
// MSVC doesn't have ssize_t. Help it along a little.
-#ifdef HAVE_SSIZE_T
-# define CTYPES_SSIZE_T ssize_t
-#else
+#ifdef _WIN32
# define CTYPES_SSIZE_T intptr_t
+#else
+# define CTYPES_SSIZE_T ssize_t
#endif
// Some #defines to make handling of types whose length varies by platform