|
6 | 6 | * |
7 | 7 | * Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $Id: builtins.h,v 1.54 1998/09/18 04:43:20 momjian Exp $ |
| 9 | + * $Id: builtins.h,v 1.55 1998/09/22 20:28:13 momjian Exp $ |
10 | 10 | * |
11 | 11 | * NOTES |
12 | 12 | * This should normally only be included by fmgr.h. |
@@ -64,7 +64,7 @@ extern bool cideq(int8 arg1, int8 arg2); |
64 | 64 | externint32int2in(char*num); |
65 | 65 | externchar*int2out(int16sh); |
66 | 66 | externint16*int28in(char*shs); |
67 | | -externchar*int28out(int16(*shs)[]); |
| 67 | +externchar*int28out(int16*shs); |
68 | 68 | externint32*int44in(char*input_string); |
69 | 69 | externchar*int44out(int32*an_array); |
70 | 70 | externint32int4in(char*num); |
@@ -329,7 +329,7 @@ extern bool oidnotin(Oid the_oid, char *compare); |
329 | 329 |
|
330 | 330 | /* oid.c */ |
331 | 331 | externOid*oid8in(char*oidString); |
332 | | -externchar*oid8out(Oid(*oidArray)[]); |
| 332 | +externchar*oid8out(Oid*oidArray); |
333 | 333 | externOidoidin(char*s); |
334 | 334 | externchar*oidout(Oido); |
335 | 335 | externbooloideq(Oidarg1,Oidarg2); |
@@ -358,7 +358,7 @@ extern bool texticregexne(struct varlena * s, struct varlena * p); |
358 | 358 | /* regproc.c */ |
359 | 359 | externint32regprocin(char*pro_name_and_oid); |
360 | 360 | externchar*regprocout(RegProcedureproid); |
361 | | -externtext*oid8types(Oid(*oidArray)[]); |
| 361 | +externtext*oid8types(Oid*oidArray); |
362 | 362 | externOidregproctooid(RegProcedurerp); |
363 | 363 |
|
364 | 364 | /* define macro to replace mixed-case function call - tgl 97/04/27 */ |
|