mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 18:25:17 -05:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
21 lines
516 B
C
21 lines
516 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|