|
3 | 3 | * |
4 | 4 | * Copyright (c) 2000-2006, PostgreSQL Global Development Group |
5 | 5 | * |
6 | | - * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.52 2006/12/16 00:38:43 adunstan Exp $ |
| 6 | + * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.53 2006/12/18 14:17:41 adunstan Exp $ |
7 | 7 | */ |
8 | 8 | #ifndefCOMMON_H |
9 | 9 | #defineCOMMON_H |
@@ -79,11 +79,11 @@ typedef struct timeval TimevalStruct; |
79 | 79 | ((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0) |
80 | 80 | #else |
81 | 81 |
|
82 | | -typedefstruct_timebTimevalStruct; |
83 | | - |
84 | 82 | #include<sys/types.h> |
85 | 83 | #include<sys/timeb.h> |
86 | 84 |
|
| 85 | +typedefstruct_timebTimevalStruct; |
| 86 | + |
87 | 87 | #defineGETTIMEOFDAY(T) _ftime(T) |
88 | 88 | #defineDIFF_MSEC(T,U) \ |
89 | 89 | (((T)->time - (U)->time) * 1000.0 + \ |
|