aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/array.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-05-03 23:48:26 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-05-03 23:48:26 +0000
commitb6c732e63c18e1436154893e698dd206b3c45ab8 (patch)
tree52137e28b3a5df1717c93ae4dd2638328655f4f0 /src/include/utils/array.h
parent210055ad614ae845686fdf9f8fc6b60301689cc8 (diff)
downloadpostgresql-b6c732e63c18e1436154893e698dd206b3c45ab8.tar.gz
postgresql-b6c732e63c18e1436154893e698dd206b3c45ab8.zip
Correct declaration of array_map() so that it doesn't make
gcc quite so unhappy.
Diffstat (limited to 'src/include/utils/array.h')
-rw-r--r--src/include/utils/array.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/utils/array.h b/src/include/utils/array.h
index 7ea945bf5fb..f0566ca6f93 100644
--- a/src/include/utils/array.h
+++ b/src/include/utils/array.h
@@ -10,7 +10,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: array.h,v 1.16 1999/05/03 19:10:25 momjian Exp $
+ * $Id: array.h,v 1.17 1999/05/03 23:48:25 tgl Exp $
*
* NOTES
* XXX the data array should be LONGALIGN'd -- notice that the array
@@ -126,7 +126,8 @@ extern char *array_set(ArrayType *array, int n, int *indx, char *dataPtr,
extern char *array_assgn(ArrayType *array, int n, int *upperIndx,
int *lowerIndx, ArrayType *newArr, int reftype,
int len, bool *isNull);
-extern ArrayType *array_map(ArrayType *v, Oid type, char *(fn)(char *p, ...),
+extern ArrayType *array_map(ArrayType *v, Oid type,
+ char * (*fn)(),
Oid retType, int nargs, ...);
extern int array_eq(ArrayType *array1, ArrayType *array2);
extern int _LOtransfer(char **destfd, int size, int nitems, char **srcfd,