mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 19:37:00 +08:00
23 lines
484 B
C
23 lines
484 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* datetime.h--
|
|
* Definitions for the datetime
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: datetime.h,v 1.5 1997/09/08 02:39:35 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DATETIME_H
|
|
#define DATETIME_H
|
|
|
|
#include "utils/dt.h"
|
|
|
|
typedef int32 DateADT;
|
|
|
|
typedef float8 TimeADT;
|
|
|
|
#endif /* DATETIME_H */
|