Corrected an issue on *nix systems

This commit is contained in:
Ward Fisher 2017-03-16 15:13:38 -06:00
parent 80d2b914a1
commit 2bf5f09bcc
3 changed files with 4 additions and 8 deletions

View File

@ -33,10 +33,6 @@ dnl
#endif
#include <errno.h> /* errno, strerror() */
#ifndef HAVE_SSIZE_T
typedef int ssize_t;
#endif
#include "tests.h"
define(`EXPECT_ERR',`error("expecting $1 but got %s",nc_err_code_name($2));')dnl

View File

@ -35,10 +35,6 @@ dnl
#include "tests.h"
#include "math.h"
#ifndef HAVE_SSIZE_T
typedef int ssize_t;
#endif
define(`EXPECT_ERR',`error("expecting $1 but got %s",nc_err_code_name($2));')dnl
define(`IntType', `ifdef(`PNETCDF',`MPI_Offset',`size_t')')dnl

View File

@ -18,6 +18,10 @@
#endif
#include "error.h"
#ifndef HAVE_SSIZE_T
typedef int ssize_t;
#endif
#if defined(_CRAY) && !defined(_CRAYIEEE) && !defined(__crayx1)
#define CRAYFLOAT 1 /* CRAY Floating point */
#elif defined(_SX) && defined(_FLOAT2) /* NEC SUPER-UX in CRAY mode */