OSDN Git Service

Fix inclusion order, per Andreas.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 4 Nov 2002 14:27:21 +0000 (14:27 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 4 Nov 2002 14:27:21 +0000 (14:27 +0000)
src/interfaces/libpq/pqsignal.c

index 9b89923..751e87d 100644 (file)
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.15 2002/06/20 20:29:54 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.16 2002/11/04 14:27:21 tgl Exp $
  *
  * NOTES
  *             This shouldn't be in libpq, but the monitor and some other
  *
  *-------------------------------------------------------------------------
  */
-#include <stdlib.h>
-#include <signal.h>
-
 #include "pqsignal.h"
 
+#include <signal.h>
+
 pqsigfunc
 pqsignal(int signo, pqsigfunc func)
 {