1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Be careful to include postgres.h *before* any system headers, to ensure

that the right flavors of largefile-related definitions are seen.
Most of these changes are probably unnecessary, but better safe than
sorry.
This commit is contained in:
Tom Lane
2002-09-05 00:43:07 +00:00
parent 3f63787cbf
commit 52c9d25933
21 changed files with 68 additions and 65 deletions

View File

@ -7,11 +7,11 @@
#define YYSTYPE char *
#define YYDEBUG 1
#include <string.h>
#include "postgres.h"
#include "cubedata.h"
#include "buffer.h"
#include "postgres.h"
#include "utils/palloc.h"
#include "utils/elog.h"

View File

@ -6,7 +6,8 @@
#define YYSTYPE char *
#define yylval cube_yylval
#include <stdio.h>
#include "postgres.h"
#include "cubeparse.h"
#include "buffer.h"