index 21bc141b34d11b00831b05b501bc9658b9745960..2122fda6c79dde595079514e7d0946f73a05d5c5 100644 (file)
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/libpq/pqsignal.c,v 1.30 2010年01月02日 16:58:12 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/pqsignal.c,v 1.31 2010年08月13日 20:04:33 tgl Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
*
*-------------------------------------------------------------------------
*/
-#include "pqsignal.h"
+#include "postgres_fe.h"
#include <signal.h>
+#include "pqsignal.h"
+
+
pqsigfunc
pqsignal(int signo, pqsigfunc func)
{
index 43322f917a6cebbc14af740dbb5f01b81bc03388..9d22854415f0a7e801e7f1144ed25156049727f6 100644 (file)
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/interfaces/libpq/pqsignal.h,v 1.25 2010年01月02日 16:58:12 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/pqsignal.h,v 1.26 2010年08月13日 20:04:33 tgl Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
#ifndef PQSIGNAL_H
#define PQSIGNAL_H
-#include "postgres_fe.h"
-
typedef void (*pqsigfunc) (int);
extern pqsigfunc pqsignal(int signo, pqsigfunc func);