Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdcee16 commit 6b4fe04Copy full SHA for 6b4fe04
src/bin/psql/common.h
@@ -3,7 +3,7 @@
3
*
4
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
5
6
- * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.52 2006/12/16 00:38:43 adunstan Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.53 2006/12/18 14:17:41 adunstan Exp $
7
*/
8
#ifndef COMMON_H
9
#define COMMON_H
@@ -79,11 +79,11 @@ typedef struct timeval TimevalStruct;
79
((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)
80
#else
81
82
-typedef struct _timeb TimevalStruct;
83
-
84
#include <sys/types.h>
85
#include <sys/timeb.h>
86
+typedef struct _timeb TimevalStruct;
+
87
#define GETTIMEOFDAY(T) _ftime(T)
88
#define DIFF_MSEC(T, U) \
89
(((T)->time - (U)->time) * 1000.0 + \
0 commit comments