1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Removed superfluous return statement in get_data.

This commit is contained in:
Michael Meskes
2003-09-19 14:06:21 +00:00
parent 689015748f
commit df974272ec
7 changed files with 55 additions and 67 deletions

View File

@@ -1,13 +1,8 @@
#include <pgtypes_timestamp.h>
#include <pgtypes_interval.h>
#ifndef dtime_t
#define dtime_t timestamp
#endif /* dtime_t */
#ifndef intrvl_t
#define intrvl_t interval
#endif /* intrvl_t */
typedef timestamp dtime_t;
typedef interval intrvl_t;
extern void dtcurrent(dtime_t *);
extern int dtcvasc(char *, dtime_t *);