Merge pull request #929 from Unidata/gh928.wif

Replace quotes when including system includes
This commit is contained in:
Ward Fisher 2018-04-18 12:33:33 -06:00 committed by GitHub
commit 9a9326cd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ See \ref copyright file for copying and redistribution conditions.
#include <stdio.h>
#include <stdarg.h>
#include "netcdf.h"
#include "math.h"
#include <math.h>
/** \defgroup v2_api The Version 2 API

View File

@ -10,7 +10,7 @@
#include <nc_tests.h>
#include "err_macros.h"
#include "netcdf.h"
#include "math.h"
#include <math.h>
#define FILE_NAME "tst_converts2.nc"
#define VAR_NAME "Monkey"