More Windows fixes

This commit is contained in:
Evan Miller
2020-08-05 00:45:14 -04:00
parent 71969c29df
commit 36ba51db7a
4 changed files with 6 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
#include "mdbfakeglib.h"
#include <string.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@@ -23,6 +23,10 @@
#include "dmalloc.h"
#endif
#ifndef MIN
#define MIN(a,b) (a>b ? b : a)
#endif
/*
* This function is used in reading text data from an MDB table.
*/