File tree 3 files changed +13
-13
lines changed
3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.26 1998/09/01 04:27:33 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/catalog/indexing.c,v 1.27 1998/09/01 06:22:42 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
45
45
*/
46
46
47
47
char * Name_pg_attr_indices [Num_pg_attr_indices ] = {AttributeNameIndex ,
48
- AttributeNumIndex ,
49
- AttributeRelidIndex };
48
+ AttributeNumIndex ,
49
+ AttributeRelidIndex };
50
50
char * Name_pg_proc_indices [Num_pg_proc_indices ] = {ProcedureNameIndex ,
51
- ProcedureOidIndex ,
52
- ProcedureSrcIndex };
51
+ ProcedureOidIndex ,
52
+ ProcedureSrcIndex };
53
53
char * Name_pg_type_indices [Num_pg_type_indices ] = {TypeNameIndex ,
54
- TypeOidIndex };
54
+ TypeOidIndex };
55
55
char * Name_pg_class_indices [Num_pg_class_indices ] = {ClassNameIndex ,
56
- ClassOidIndex };
56
+ ClassOidIndex };
57
57
char * Name_pg_attrdef_indices [Num_pg_attrdef_indices ] = {AttrDefaultIndex };
58
58
59
59
char * Name_pg_relcheck_indices [Num_pg_relcheck_indices ] = {RelCheckIndex };
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/int.c,v 1.17 1998/09/01 04:32:35 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/int.c,v 1.18 1998/09/01 06:22:43 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -80,12 +80,12 @@ int2out(int16 sh)
80
80
int16 *
81
81
int28in (char * shs )
82
82
{
83
- int16 * * result ;
83
+ int16 ( * result )[] ;
84
84
int nums ;
85
85
86
86
if (shs == NULL )
87
87
return NULL ;
88
- result = (int16 * * ) palloc (sizeof (int16 [8 ]));
88
+ result = (int16 ( * )[] ) palloc (sizeof (int16 [8 ]));
89
89
if ((nums = sscanf (shs , "%hd%hd%hd%hd%hd%hd%hd%hd" ,
90
90
* result ,
91
91
* result + 1 ,
@@ -107,7 +107,7 @@ int28in(char *shs)
107
107
* int28out - converts internal form to "num num ..."
108
108
*/
109
109
char *
110
- int28out (int16 * * shs )
110
+ int28out (int16 ( * shs )[] )
111
111
{
112
112
int num ;
113
113
int16 * sp ;
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: builtins.h,v 1.52 1998/09/01 05:34:16 momjian Exp $
9
+ * $Id: builtins.h,v 1.53 1998/09/01 06:22:46 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
extern int32 int2in (char * num );
65
65
extern char * int2out (int16 sh );
66
66
extern int16 * int28in (char * shs );
67
- extern char * int28out (int16 * * shs );
67
+ extern char * int28out (int16 ( * shs )[] );
68
68
extern int32 * int44in (char * input_string );
69
69
extern char * int44out (int32 * an_array );
70
70
extern int32 int4in (char * num );
You can’t perform that action at this time.
0 commit comments