mirror of
https://github.com/postgres/postgres.git
synced 2026-03-12 05:32:27 -04:00
22 lines
477 B
C
22 lines
477 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* datetime.h
|
|
* Definitions for the datetime
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: datetime.h,v 1.7 1999/02/13 23:22:16 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef DATETIME_H
|
|
#define DATETIME_H
|
|
|
|
#include "utils/dt.h"
|
|
|
|
typedef int32 DateADT;
|
|
|
|
typedef float8 TimeADT;
|
|
|
|
#endif /* DATETIME_H */
|