[PRISM] Remove ssize_t definition from prism

This commit is contained in:
Kevin Newton 2024-03-13 12:06:48 -04:00
parent 4dd9602c6f
commit a05dfbd405
No known key found for this signature in database
GPG Key ID: 0EAD74C79EC73F26

View File

@ -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.