blob: 2a97f5e0dd5730ccc2bb1d0b7ea5d57ce6fac723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*-------------------------------------------------------------------------
*
* datetime.h
* Definitions for the datetime
*
*
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: datetime.h,v 1.9 2000/01/26 05:58:37 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef DATETIME_H
#define DATETIME_H
typedef int32 DateADT;
typedef float8 TimeADT;
#endif /* DATETIME_H */
|