Cloned library NetCDF-C-4.9.2 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
569 B

2 years ago
/* Copyright 2018-2018, University Corporation for Atmospheric
* Research See netcdf/COPYRIGHT file for copying and redistribution
* conditions.
*
* This header file contains some macros for rounding numbers.
*
* Glenn Davis, 1996
*/
#ifndef _RND_H
#define _RND_H
/* useful for aligning memory */
#define _RNDUP(x, unit) ((((x) + (unit) - 1) / (unit)) \
* (unit))
#define _RNDDOWN(x, unit) ((x) - ((x)%(unit)))
#define M_RND_UNIT (sizeof(double))
#define M_RNDUP(x) _RNDUP(x, M_RND_UNIT)
#define M_RNDDOWN(x) __RNDDOWN(x, M_RND_UNIT)
#endif /* _RND_H */