1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
2000-01-18 13:03:49 +00:00
parent 4cd086ce43
commit c80ba6a1b5
14 changed files with 363 additions and 196 deletions

View File

@ -2,6 +2,10 @@
#include "type.h"
#include <errno.h>
/* defines */
#define STRUCT_DEPTH 128
/* variables */
extern int braces_open,
@ -23,6 +27,8 @@ extern struct ECPGtype ecpg_no_indicator;
extern struct variable no_indicator;
extern struct arguments *argsinsert;
extern struct arguments *argsresult;
extern struct when when_error, when_nf, when_warn;
extern struct ECPGstruct_member *struct_member_list[STRUCT_DEPTH];
/* functions */
@ -39,9 +45,9 @@ extern void yyerror(char *);
/* return codes */
#define OK 0
#define PARSE_ERROR -1
#define PARSE_ERROR -1
#define ILLEGAL_OPTION -2
#define INDICATOR_NOT_ARRAY -3
#define INDICATOR_NOT_ARRAY -3
#define NO_INCLUDE_FILE ENOENT
#define OUT_OF_MEMORY ENOMEM
#define NO_INCLUDE_FILE ENOENT
#define OUT_OF_MEMORY ENOMEM