File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 88 *
99 *
1010 * 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 $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -474,7 +474,7 @@ plpgsql_stmt_typename(PLpgSQL_stmt *stmt)
474474 **********************************************************************/
475475static int dump_indent ;
476476
477- static void dump_ind ();
477+ static void dump_ind (void );
478478static void dump_stmt (PLpgSQL_stmt * stmt );
479479static void dump_block (PLpgSQL_stmt_block * block );
480480static void dump_assign (PLpgSQL_stmt_assign * stmt );
Original file line number Diff line number Diff line change 99 *
1010 * CAUTION: if you change this file, see also qsort_arg.c
1111 *
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 $
1313 */
1414
1515/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
@@ -73,11 +73,7 @@ do { \
7373 (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
7474
7575static 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 )
8177{
8278 if (swaptype <= 1 )
8379 swapcode (long , a , b , n );
Original file line number Diff line number Diff line change 99 *
1010 * CAUTION: if you change this file, see also qsort.c
1111 *
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 $
1313 */
1414
1515/* $NetBSD: qsort.c,v 1.13 2003/08/07 16:43:42 agc Exp $ */
@@ -73,11 +73,7 @@ do { \
7373 (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
7474
7575static 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 )
8177{
8278 if (swaptype <= 1 )
8379 swapcode (long , a , b , n );
You can’t perform that action at this time.
0 commit comments