File tree Expand file tree Collapse file tree 10 files changed +9
-48
lines changed Expand file tree Collapse file tree 10 files changed +9
-48
lines changed Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $PostgreSQL: pgsql/src/bin/pg_dump/common.c,v 1.92 2006/08/01 18:05:04 momjian Exp $
14
+ * $PostgreSQL: pgsql/src/bin/pg_dump/common.c,v 1.93 2006/09/27 15:41:23 tgl Exp $
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
24
24
25
25
#include <ctype.h>
26
26
27
- #ifndef HAVE_STRDUP
28
- #include "strdup.h"
29
- #endif
30
-
31
27
32
28
/*
33
29
* Variables for mapping DumpId to DumpableObject
Original file line number Diff line number Diff line change 5
5
* Implements the basic DB functions used by the archiver.
6
6
*
7
7
* IDENTIFICATION
8
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.73 2006/07/18 17:42:00 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.74 2006/09/27 15:41:23 tgl Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
21
21
#include <termios.h>
22
22
#endif
23
23
24
- #ifndef HAVE_STRDUP
25
- #include "strdup.h"
26
- #endif
27
24
28
25
static const char * modulename = gettext_noop ("archiver (db)" );
29
26
Original file line number Diff line number Diff line change 12
12
* by PostgreSQL
13
13
*
14
14
* IDENTIFICATION
15
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.448 2006/09/22 21:39:57 tgl Exp $
15
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.449 2006/09/27 15:41:23 tgl Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
34
34
#include <termios.h>
35
35
#endif
36
36
37
- #ifndef HAVE_STRDUP
38
- #include "strdup.h"
39
- #endif
40
-
41
37
#include "getopt_long.h"
42
38
43
39
#ifndef HAVE_INT_OPTRESET
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
*
9
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.81 2006/07/14 14:52:26 momjian Exp $
9
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.82 2006/09/27 15:41:23 tgl Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
19
19
#ifdef ENABLE_NLS
20
20
#include <locale.h>
21
21
#endif
22
- #ifndef HAVE_STRDUP
23
- #include "strdup.h"
24
- #endif
25
22
26
23
#include "getopt_long.h"
27
24
Original file line number Diff line number Diff line change 34
34
*
35
35
*
36
36
* IDENTIFICATION
37
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.80 2006/08/01 18:21:44 momjian Exp $
37
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.81 2006/09/27 15:41:23 tgl Exp $
38
38
*
39
39
*-------------------------------------------------------------------------
40
40
*/
43
43
44
44
#include <ctype.h>
45
45
46
- #ifndef HAVE_STRDUP
47
- #include "strdup.h"
48
- #endif
49
-
50
46
#ifdef HAVE_TERMIOS_H
51
47
#include <termios.h>
52
48
#endif
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
5
5
*
6
- * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.128 2006/08/29 22:48:55 tgl Exp $
6
+ * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.129 2006/09/27 15:41:23 tgl Exp $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
#include "common.h"
10
10
11
11
#include <ctype.h>
12
- #ifndef HAVE_STRDUP
13
- #include <strdup.h>
14
- #endif
15
12
#include <signal.h>
16
13
#ifndef WIN32
17
14
#include <sys/time.h>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.335 2006/09/15 21:34:23 tgl Exp $
11
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.336 2006/09/27 15:41:24 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
22
22
#include <time.h>
23
23
#include <unistd.h>
24
24
25
- #ifndef HAVE_STRDUP
26
- #include "strdup.h"
27
- #endif
28
-
29
25
#include "libpq-fe.h"
30
26
#include "libpq-int.h"
31
27
#include "fe-auth.h"
Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.86 2006/09/04 14:57:27 petere Exp $
14
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.87 2006/09/27 15:41:24 tgl Exp $
15
15
*
16
16
* NOTES
17
17
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
109
109
#endif
110
110
#endif
111
111
112
- #ifndef HAVE_STRDUP
113
- #include "strdup.h"
114
- #endif
115
-
116
112
#ifdef USE_SSL
117
113
#include <openssl/ssl.h>
118
114
#endif /* USE_SSL */
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/port/strdup.c,v 1.11 2006/07/14 04:59:30 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/port/strdup.c,v 1.12 2006/09/27 15:41:24 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
16
16
#include "c.h"
17
17
18
- #include "strdup.h"
19
-
20
18
21
19
char *
22
20
strdup (const char * string )
You can’t perform that action at this time.
0 commit comments