Fix nctime to not include ncconfigure.h

re: https://github.com/Unidata/netcdf-c/pull/1411

Turns out that the real problem here is that nctime.c
is including ncconfigure.h rather than config.h.
This commit is contained in:
Dennis Heimbigner 2019-05-30 12:47:50 -06:00
parent fbb47d50c1
commit 4de0c555e1

View File

@ -16,6 +16,7 @@
* the CDMS library, get the original sources from LLNL.
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
@ -23,7 +24,6 @@
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#include "ncconfigure.h"
#include "nctime.h"
static const cdCompTime ZA = {1582, 10, 5, 0.0};