From f2d120532207b8873a5e74e7350dd2904f377289 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 13 Jun 2000 07:35:40 +0000 Subject: Another batch of fmgr updates. I think I have gotten all old-style functions that take pass-by-value datatypes. Should be ready for port testing ... --- src/include/utils/formatting.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/include/utils/formatting.h') diff --git a/src/include/utils/formatting.h b/src/include/utils/formatting.h index 327b83f6e8a..e296484e1fe 100644 --- a/src/include/utils/formatting.h +++ b/src/include/utils/formatting.h @@ -2,7 +2,7 @@ /* ----------------------------------------------------------------------- * formatting.h * - * $Id: formatting.h,v 1.5 2000/06/09 01:11:15 tgl Exp $ + * $Id: formatting.h,v 1.6 2000/06/13 07:35:30 tgl Exp $ * * * Portions Copyright (c) 1999-2000, PostgreSQL, Inc @@ -24,11 +24,11 @@ extern Datum timestamp_to_char(PG_FUNCTION_ARGS); extern Datum to_timestamp(PG_FUNCTION_ARGS); extern Datum to_date(PG_FUNCTION_ARGS); -extern Numeric numeric_to_number(text *value, text *fmt); -extern text *numeric_to_char(Numeric value, text *fmt); -extern text *int4_to_char(int32 value, text *fmt); -extern text *int8_to_char(int64 *value, text *fmt); -extern text *float4_to_char(float32 value, text *fmt); -extern text *float8_to_char(float64 value, text *fmt); +extern Datum numeric_to_number(PG_FUNCTION_ARGS); +extern Datum numeric_to_char(PG_FUNCTION_ARGS); +extern Datum int4_to_char(PG_FUNCTION_ARGS); +extern Datum int8_to_char(PG_FUNCTION_ARGS); +extern Datum float4_to_char(PG_FUNCTION_ARGS); +extern Datum float8_to_char(PG_FUNCTION_ARGS); #endif -- cgit v1.2.3