mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
24 lines
517 B
C
24 lines
517 B
C
/* This is part of the netCDF package.
|
|
Copyright 2005 University Corporation for Atmospheric Research/Unidata
|
|
See COPYRIGHT file for conditions of use.
|
|
|
|
Common includes, defines, etc., for test code in the libsrc4 and
|
|
nc_test4 directories.
|
|
*/
|
|
|
|
#ifndef _NC_TESTS_H
|
|
#define _NC_TESTS_H
|
|
|
|
#include <config.h>
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#ifdef USE_PARALLEL
|
|
#include "netcdf_par.h"
|
|
#endif
|
|
#include "netcdf.h"
|
|
#include "err_macros.h"
|
|
|
|
#endif /* _NC_TESTS_H */
|