mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 17:37:07 +08:00
21 lines
454 B
C
21 lines
454 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|