diff options
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 267d7c55d12..9e7e995ee16 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.118 2000/06/19 03:54:48 tgl Exp $ + * $Id: builtins.h,v 1.119 2000/07/05 23:11:51 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -436,8 +436,8 @@ extern int32 varcharlen(char *arg); extern int32 varcharoctetlen(char *arg); /* varlena.c */ -extern text *textin(char *inputText); -extern char *textout(text *vlena); +extern Datum textin(PG_FUNCTION_ARGS); +extern Datum textout(PG_FUNCTION_ARGS); extern text *textcat(text *arg1, text *arg2); extern bool texteq(text *arg1, text *arg2); extern bool textne(text *arg1, text *arg2); |