Replace quotes when including system includes, in support of https://github.com/Unidata/netcdf-c/issues/928

This commit is contained in:
Ward Fisher 2018-04-18 10:50:59 -06:00
parent 76af2109e3
commit 9a1172fbb0
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"