1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Clean up INT64CONST conflicts. Make the pg_crc code use a macro called

UINT64CONST, since unsigned was what it wanted anyway.  Centralize macro
definitions into c.h.
This commit is contained in:
Tom Lane
2002-04-23 15:45:30 +00:00
parent bf1f2e545c
commit 28a898ad54
7 changed files with 161 additions and 170 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: int8.h,v 1.32 2002/04/21 19:48:31 thomas Exp $
* $Id: int8.h,v 1.33 2002/04/23 15:45:30 tgl Exp $
*
* NOTES
* These data types are supported on all 64-bit architectures, and may
@@ -20,21 +20,15 @@
#ifndef INT8_H
#define INT8_H
#include "c.h"
#include "fmgr.h"
/* this should be set in pg_config.h, but just in case it wasn't: */
#ifndef INT64_FORMAT
#warning "Broken pg_config.h should have defined INT64_FORMAT"
#define INT64_FORMAT "%ld"
#endif
#ifdef HAVE_LL_CONSTANTS
#define INT64CONST(x) ((int64) x##LL)
#else
#define INT64CONST(x) ((int64) x)
#endif
extern Datum int8in(PG_FUNCTION_ARGS);
extern Datum int8out(PG_FUNCTION_ARGS);