/* * psql - the PostgreSQL interactive terminal * * Copyright (c) 2000-2004, PostgreSQL Global Development Group * * $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.16 2004/08/29 04:13:02 momjian Exp $ */ #ifndef MAINLOOP_H #define MAINLOOP_H #include "postgres_fe.h" #include #ifndef WIN32 #include extern sigjmp_buf main_loop_jmp; #endif int MainLoop(FILE *source); #endif /* MAINLOOP_H */