mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
Remove config.h from ncjson.c and nclist.c
This commit is contained in:
parent
4fa91d8241
commit
1fa3955226
@ -12,9 +12,14 @@ TODO: make utf8 safe
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include "config.h"
|
||||
#include "ncjson.h"
|
||||
|
||||
#if defined(_WIN32) && !defined(__MINGW32__)
|
||||
#define strcasecmp _stricmp
|
||||
#else
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#undef DEBUG
|
||||
|
||||
#define NCJ_OK 0
|
||||
|
@ -3,9 +3,13 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "config.h"
|
||||
|
||||
#include "nclist.h"
|
||||
|
||||
#if defined(_WIN32) && !defined(__MINGW32__)
|
||||
#define strcasecmp _stricmp
|
||||
#endif
|
||||
|
||||
int nclistnull(void* e) {return e == NULL;}
|
||||
|
||||
#ifndef TRUE
|
||||
|
Loading…
Reference in New Issue
Block a user