mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Reorganization of C and POSIX headers in H5public.h & H5private.h (#793)
* Reorganization of C and POSIX headers in H5public.h & H5private.h Consolidated and removed duplicates * It turns out Windows has sys/types.h Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
This commit is contained in:
parent
5c3f4b3cb2
commit
b16b7316c4
@ -31,21 +31,20 @@
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <float.h>
|
||||
#include <limits.h>
|
||||
#include <math.h>
|
||||
#include <signal.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
/* POSIX headers */
|
||||
#ifdef H5_HAVE_SYS_TIME_H
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
#ifdef H5_HAVE_UNISTD_H
|
||||
#include <pwd.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#endif
|
||||
|
||||
|
@ -35,22 +35,23 @@
|
||||
#include <features.h> /* For setting POSIX, BSD, etc. compatibility */
|
||||
#endif
|
||||
|
||||
#ifdef H5_HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#include <limits.h> /* For H5T_NATIVE_CHAR defn in H5Tpublic.h */
|
||||
#include <stdarg.h> /* For variadic functions in H5VLpublic.h */
|
||||
|
||||
#include <stdint.h> /* For C9x types */
|
||||
|
||||
/* C library header files for things that appear in HDF5 public headers */
|
||||
#ifdef __cplusplus
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#endif
|
||||
#include <inttypes.h> /* C99/POSIX.1 header for uint64_t, PRIu64 */
|
||||
|
||||
#ifdef H5_HAVE_STDDEF_H
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/* Unlike most sys/ headers, which are POSIX-only, sys/types.h is avaible
|
||||
* on Windows, though it doesn't necessarily contain all the POSIX types
|
||||
* we need for HDF5 (e.g. ssize_t).
|
||||
*/
|
||||
#ifdef H5_HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
@ -192,7 +193,6 @@ typedef int herr_t;
|
||||
* }
|
||||
* \endcode
|
||||
*/
|
||||
#include <stdbool.h>
|
||||
typedef bool hbool_t;
|
||||
typedef int htri_t;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user