]> granicus.if.org Git - postgresql/commitdiff
Need #include <time.h> on some platforms.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Jun 2005 22:34:56 +0000 (22:34 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Jun 2005 22:34:56 +0000 (22:34 +0000)
src/backend/access/transam/twophase.c

index 6b78467ae1552bac22ee4c14b84c07b2b9ae69b1..7c8102d87c92d4db9ff825074233442f5d0dd6db 100644 (file)
@@ -7,7 +7,7 @@
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *             $PostgreSQL: pgsql/src/backend/access/transam/twophase.c,v 1.5 2005/06/19 21:34:01 tgl Exp $
+ *             $PostgreSQL: pgsql/src/backend/access/transam/twophase.c,v 1.6 2005/06/19 22:34:56 tgl Exp $
  *
  * NOTES
  *             Each global transaction is associated with a global transaction
  */
 #include "postgres.h"
 
-#include <sys/types.h>
-#include <sys/stat.h>
 #include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "access/heapam.h"