blob: 72d46d76dbd935eceaea32b9a3829bbe39f54699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/mainloop.h,v 1.7 2000/02/16 13:15:26 momjian Exp $
*/
#ifndef MAINLOOP_H
#define MAINLOOP_H
int MainLoop(FILE *source);
#endif /* MAINLOOP_H */
|