diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 16:22:38 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 16:22:38 +0000 |
commit | 748a15a8ea98fc80fc7cebf523246910109c1eae (patch) | |
tree | df58aea95cb14bb6350a43053523a97cc5bc6a0e /src | |
parent | e6319d1d28cb6e17ed7c47ac77168f20098363d4 (diff) | |
download | postgresql-748a15a8ea98fc80fc7cebf523246910109c1eae.tar.gz postgresql-748a15a8ea98fc80fc7cebf523246910109c1eae.zip |
Probably need sys/time.h here too to be safe.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/commands/vacuum.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index a39e90a4a14..1a3f759840b 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -7,13 +7,15 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.52 2004/05/21 05:08:04 tgl Exp $ + * $PostgreSQL: pgsql/src/include/commands/vacuum.h,v 1.53 2004/05/21 16:22:38 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef VACUUM_H #define VACUUM_H +#include <sys/time.h> + #ifdef HAVE_GETRUSAGE #include <sys/resource.h> #else |