1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00

Attached is the complete diff against current CVS.

Compiles on BCC 5.5 and VC++ 6.0 (with warnings).

Karl Waclawek
This commit is contained in:
Bruce Momjian
2003-06-12 08:15:29 +00:00
parent dc4ee8a833
commit b14295cfe4
19 changed files with 135 additions and 27 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.63 2003/06/12 07:52:51 momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.64 2003/06/12 08:15:28 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -48,7 +48,7 @@ typedef struct timeval TimevalStruct;
#else
typedef struct _timeb TimevalStruct;
#define GETTIMEOFDAY(T) _ftime(&T)
#define GETTIMEOFDAY(T) _ftime(T)
#define DIFF_MSEC(T, U) ((((T)->time - (U)->time) * 1000.0 + (T)->millitm - (U)->millitm))
#endif