mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 14:53:31 -05:00
22 lines
420 B
C
22 lines
420 B
C
/*
|
|
* psql - the PostgreSQL interactive terminal
|
|
*
|
|
* Copyright 2000 by PostgreSQL Global Development Group
|
|
*
|
|
* $Header: /cvsroot/pgsql/src/bin/psql/mainloop.h,v 1.9 2000/04/12 17:16:22 momjian Exp $
|
|
*/
|
|
#ifndef MAINLOOP_H
|
|
#define MAINLOOP_H
|
|
|
|
#include "postgres.h"
|
|
#include <stdio.h>
|
|
#ifndef WIN32
|
|
#include <setjmp.h>
|
|
|
|
extern sigjmp_buf main_loop_jmp;
|
|
|
|
#endif
|
|
|
|
int MainLoop(FILE *source);
|
|
|
|
#endif /* MAINLOOP_H */
|