Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
7cc68676
Commit
7cc68676
authored
9 months ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
Changed to EXSE library version 2.0.0
parent
fd34a950
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!85
M214003/develop
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+5
-0
5 additions, 0 deletions
ChangeLog
src/dtypes.h
+0
-57
0 additions, 57 deletions
src/dtypes.h
with
5 additions
and
57 deletions
ChangeLog
+
5
−
0
View file @
7cc68676
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)
...
...
This diff is collapsed.
Click to expand it.
src/dtypes.h
deleted
100644 → 0
+
0
−
57
View file @
fd34a950
#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:
*/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment