1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

More compile cleanups

This commit is contained in:
Bruce Momjian
1996-11-08 20:46:33 +00:00
parent 8006c6f52f
commit c9c0e111b8
12 changed files with 59 additions and 30 deletions

View File

@@ -0,0 +1,24 @@
/*-------------------------------------------------------------------------
*
* gramparse.h--
* scanner support routines. used by both the bootstrap lexer
* as well as the normal lexer
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: gramparse.h,v 1.1 1996/11/08 20:46:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef GRAMPARSE_H
#define GRAMPARSE_H /* include once only */
/* from scan.l */
extern void init_io();
/* from gram.y */
extern void parser_init(Oid *typev, int nargs);
extern int yyparse();
#endif /* GRAMPARSE_H */

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: smgr.h,v 1.3 1996/11/08 06:02:22 momjian Exp $
* $Id: smgr.h,v 1.4 1996/11/08 20:46:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -83,6 +83,7 @@ extern int mmabort(void);
extern int MMShmemSize(void);
/* smgrtype.c */
char *smgrout(int2 i);
extern char *smgrout(int2 i);
extern int2 smgrin(char *s);
#endif /* SMGR_H */