Skip to content
Snippets Groups Projects
Commit 7cc68676 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Changed to EXSE library version 2.0.0

parent fd34a950
No related branches found
No related tags found
1 merge request!85M214003/develop
2024-10-21 Uwe Schulzweida
* using EXSE library version 2.0.0
* Version 2.4.2 released
2024-05-22 Uwe Schulzweida
* cdiInqContents: missing lock of non thread-safe netCDF4/HDF5 calls (bug fix)
......
#ifndef DTYPES_H
#define DTYPES_H
#include <stdio.h>
#include <limits.h>
/* INT32 */
#ifndef INT_MAX
#error INT_MAX undefined
#endif
#undef INT32
#if INT_MAX == 2147483647L
#define INT32 int
#elif LONG_MAX == 2147483647L
#define INT32 long
#endif
/* INT64 */
#ifndef LONG_MAX
#error LONG_MAX undefined
#endif
#undef INT64
#if LONG_MAX > 2147483647L
#define INT64 long
#else
#define INT64 long long
#endif
/* FLT32 */
#undef FLT32
#define FLT32 float
/* FLT64 */
#undef FLT64
#define FLT64 double
/* UINT32 and UINT64 */
#define UINT32 unsigned INT32
#define UINT64 unsigned INT64
#endif /* DTYPES_H */
/*
* Local Variables:
* c-file-style: "Java"
* c-basic-offset: 2
* indent-tabs-mode: nil
* show-trailing-whitespace: t
* require-trailing-newline: t
* End:
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment