summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Newton <[email protected]>2024-03-13 12:06:48 -0400
committerKevin Newton <[email protected]>2024-03-13 12:06:48 -0400
commita05dfbd405fda4acef8c56561ab15e41e56c6abd (patch)
tree5488fc5e4f5f01c0e62ebe2be1af6c63a027ca38
parent4dd9602c6f9e3e9512ff94dbcd5d14870c828ca8 (diff)
[PRISM] Remove ssize_t definition from prism
-rw-r--r--prism/util/pm_buffer.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/prism/util/pm_buffer.h b/prism/util/pm_buffer.h
index 857d17ae52..58f7b506cf 100644
--- a/prism/util/pm_buffer.h
+++ b/prism/util/pm_buffer.h
@@ -15,14 +15,6 @@
#include <stdlib.h>
#include <string.h>
-#if defined(_MSC_VER) && !defined(ssize_t)
-# ifdef _WIN64
-# define ssize_t __int64
-# else
-# define ssize_t int
-# endif
-#endif
-
/**
* A pm_buffer_t is a simple memory buffer that stores data in a contiguous
* block of memory.