blob: fd87896b52485635b30ad5e82f3e177703c99c63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-------------------------------------------------------------------------
*
* datetime.h
* Definitions for the datetime
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: datetime.h,v 1.8 1999/07/14 01:20:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef DATETIME_H
#define DATETIME_H
typedef int32 DateADT;
typedef float8 TimeADT;
#endif /* DATETIME_H */
|