File tree 3 files changed +6
-14
lines changed 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.57 2007/01/28 17:58:13 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.58 2007/03/18 05:36:49 neilc Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -474,7 +474,7 @@ plpgsql_stmt_typename(PLpgSQL_stmt *stmt)
474
474
**********************************************************************/
475
475
static int dump_indent ;
476
476
477
- static void dump_ind ();
477
+ static void dump_ind (void );
478
478
static void dump_stmt (PLpgSQL_stmt * stmt );
479
479
static void dump_block (PLpgSQL_stmt_block * block );
480
480
static void dump_assign (PLpgSQL_stmt_assign * stmt );
Original file line number Diff line number Diff line change 9
9
*
10
10
* CAUTION: if you change this file, see also qsort_arg.c
11
11
*
12
- * $PostgreSQL: pgsql/src/port/qsort.c,v 1.12 2006/10/19 20:56:22 tgl Exp $
12
+ * $PostgreSQL: pgsql/src/port/qsort.c,v 1.13 2007/03/18 05:36:50 neilc Exp $
13
13
*/
14
14
15
15
/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
@@ -73,11 +73,7 @@ do { \
73
73
(es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
74
74
75
75
static void
76
- swapfunc (a , b , n , swaptype )
77
- char * a ,
78
- * b ;
79
- size_t n ;
80
- int swaptype ;
76
+ swapfunc (char * a , char * b , size_t n , int swaptype )
81
77
{
82
78
if (swaptype <= 1 )
83
79
swapcode (long , a , b , n );
Original file line number Diff line number Diff line change 9
9
*
10
10
* CAUTION: if you change this file, see also qsort.c
11
11
*
12
- * $PostgreSQL: pgsql/src/port/qsort_arg.c,v 1.3 2006/10/12 15:04:55 tgl Exp $
12
+ * $PostgreSQL: pgsql/src/port/qsort_arg.c,v 1.4 2007/03/18 05:36:50 neilc Exp $
13
13
*/
14
14
15
15
/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
@@ -73,11 +73,7 @@ do { \
73
73
(es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
74
74
75
75
static void
76
- swapfunc (a , b , n , swaptype )
77
- char * a ,
78
- * b ;
79
- size_t n ;
80
- int swaptype ;
76
+ swapfunc (char * a , char * b , size_t n , int swaptype )
81
77
{
82
78
if (swaptype <= 1 )
83
79
swapcode (long , a , b , n );
You can’t perform that action at this time.
0 commit comments