Skip to content

Commit

Permalink
Fix compilation on FreeBSD 12.1 32Bit with GCC 9.2.0 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-- committed Feb 4, 2020
1 parent b41b3b3 commit 42c8ba8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zip.h
Expand Up @@ -21,7 +21,7 @@ extern "C" {

#if !defined(_SSIZE_T_DEFINED) && !defined(_SSIZE_T_DEFINED_) && \
!defined(__DEFINED_ssize_t) && !defined(__ssize_t_defined) && \
!defined(_SSIZE_T) && !defined(_SSIZE_T_)
!defined(_SSIZE_T) && !defined(_SSIZE_T_) && !defined(_SSIZE_T_DECLARED)

// 64-bit Windows is the only mainstream platform
// where sizeof(long) != sizeof(void*)
Expand All @@ -37,6 +37,7 @@ typedef long ssize_t; /* byte count or error */
#define __ssize_t_defined
#define _SSIZE_T
#define _SSIZE_T_
#define _SSIZE_T_DECLARED

#endif

Expand Down

0 comments on commit 42c8ba8

Please sign in to comment.