Forgot to check-in ncgen/nc_iter.c

This commit is contained in:
Dennis Heimbigner 2013-02-28 19:16:10 +00:00
parent c50b8c29e2
commit 0fc1e99269
2 changed files with 5 additions and 1 deletions

View File

@ -248,3 +248,7 @@ For example, this works for linking an application named myapp.c with
netCDF-4 libraries:
cc -o myapp myapp.c `nc-config --cflags --libs`
Building on Windows
*******************
Refer to the document COMPILE_CMake.txt

View File

@ -5,7 +5,7 @@
*********************************************************************/
#include "includes.h"
#include "nciter.h"
#include "nc_iter.h"
#define CHECK(stat,f) if(stat != NC_NOERR) {check(stat,#f,__FILE__,__LINE__);} else {}