mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	Remove compile warnings, ensure consistent build environment for
largefile usage.
This commit is contained in:
		
							parent
							
								
									f2a242f988
								
							
						
					
					
						commit
						da2e0ddeb4
					
				@ -1,24 +1,22 @@
 | 
			
		||||
/* -------------------------------------------------------------------------
 | 
			
		||||
 * pg_dumplo
 | 
			
		||||
 *
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/lo_export.c,v 1.10 2002/09/04 20:31:06 momjian Exp $
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/lo_export.c,v 1.11 2002/09/05 21:01:16 tgl Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *					Karel Zak 1999-2000
 | 
			
		||||
 * -------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include "postgres_fe.h"
 | 
			
		||||
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <time.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
 | 
			
		||||
#include <libpq-fe.h>
 | 
			
		||||
#include <libpq/libpq-fs.h>
 | 
			
		||||
#include "libpq-fe.h"
 | 
			
		||||
#include "libpq/libpq-fs.h"
 | 
			
		||||
 | 
			
		||||
#include "pg_dumplo.h"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,24 +1,22 @@
 | 
			
		||||
/* -------------------------------------------------------------------------
 | 
			
		||||
 * pg_dumplo
 | 
			
		||||
 *
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/lo_import.c,v 1.8 2002/09/04 20:31:06 momjian Exp $
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/lo_import.c,v 1.9 2002/09/05 21:01:16 tgl Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *					Karel Zak 1999-2000
 | 
			
		||||
 * -------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include "postgres_fe.h"
 | 
			
		||||
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <time.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
 | 
			
		||||
#include <libpq-fe.h>
 | 
			
		||||
#include <libpq/libpq-fs.h>
 | 
			
		||||
#include "libpq-fe.h"
 | 
			
		||||
#include "libpq/libpq-fs.h"
 | 
			
		||||
 | 
			
		||||
#include "pg_dumplo.h"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,25 +1,19 @@
 | 
			
		||||
/* -------------------------------------------------------------------------
 | 
			
		||||
 * pg_dumplo
 | 
			
		||||
 *
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.11 2002/09/04 20:31:07 momjian Exp $
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.12 2002/09/05 21:01:16 tgl Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *					Karel Zak 1999-2000
 | 
			
		||||
 * -------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/* We import postgres_fe.h mostly to get the HAVE_GETOPT_LONG configure result. */
 | 
			
		||||
#ifndef OUT_OF_PG
 | 
			
		||||
#include "postgres_fe.h"
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
 | 
			
		||||
#include <libpq-fe.h>
 | 
			
		||||
#include <libpq/libpq-fs.h>
 | 
			
		||||
#include "libpq-fe.h"
 | 
			
		||||
#include "libpq/libpq-fs.h"
 | 
			
		||||
 | 
			
		||||
#include "pg_dumplo.h"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,24 +1,22 @@
 | 
			
		||||
/* -------------------------------------------------------------------------
 | 
			
		||||
 * pg_dumplo
 | 
			
		||||
 *
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/utils.c,v 1.5 2002/08/15 02:58:29 momjian Exp $
 | 
			
		||||
 * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/utils.c,v 1.6 2002/09/05 21:01:16 tgl Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *					Karel Zak 1999-2000
 | 
			
		||||
 * -------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
#include <sys/types.h>
 | 
			
		||||
#include "postgres_fe.h"
 | 
			
		||||
 | 
			
		||||
#include <fcntl.h>
 | 
			
		||||
#include <errno.h>
 | 
			
		||||
#include <time.h>
 | 
			
		||||
#include <unistd.h>
 | 
			
		||||
#include <sys/stat.h>
 | 
			
		||||
 | 
			
		||||
#include <libpq-fe.h>
 | 
			
		||||
#include <libpq/libpq-fs.h>
 | 
			
		||||
#include "libpq-fe.h"
 | 
			
		||||
#include "libpq/libpq-fs.h"
 | 
			
		||||
 | 
			
		||||
#include "pg_dumplo.h"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user