diff options
author | Tom Lane | 2004-09-14 03:28:28 +0000 |
---|---|---|
committer | Tom Lane | 2004-09-14 03:28:28 +0000 |
commit | fc564686a76ff045a4dba85a3b077de4fe4b64b6 (patch) | |
tree | 00e2cb25203786aeafcaed474206ac28955d6bd0 /contrib/dbase/dbf.h | |
parent | 296fb57b2009c0dd69fe7444b5210afd5f7996f2 (diff) |
Fix contrib/dbase to compile under Win32. Laurent Ballester
Diffstat (limited to 'contrib/dbase/dbf.h')
-rw-r--r-- | contrib/dbase/dbf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/dbase/dbf.h b/contrib/dbase/dbf.h index 254e8d19e99..5c882fc7a87 100644 --- a/contrib/dbase/dbf.h +++ b/contrib/dbase/dbf.h @@ -8,6 +8,9 @@ #ifndef _DBF_H #define _DBF_H +#ifdef _WIN32 +#include <gmon.h> /* we need it to define u_char type */ +#endif #include <sys/types.h> /********************************************************************** |