Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8f5561a0
Commit
8f5561a0
authored
Jul 17, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More config.h cleanups.
parent
fbe4ad21
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
14 deletions
+9
-14
src/backend/port/inet_aton.c
src/backend/port/inet_aton.c
+3
-3
src/include/c.h
src/include/c.h
+5
-7
src/include/postgres.h
src/include/postgres.h
+1
-4
No files found.
src/backend/port/inet_aton.c
View file @
8f5561a0
/* $Id: inet_aton.c,v 1.1
6 1999/02/07 22:07:02 tgl
Exp $
/* $Id: inet_aton.c,v 1.1
7 1999/07/17 04:12:09 momjian
Exp $
*
* This inet_aton() function was taken from the GNU C library and
* incorporated into Postgres for those systems which do not have this
...
...
@@ -42,12 +42,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. */
#include "config.h"
#include <sys/types.h>
#include <netinet/in.h>
#include <ctype.h>
#include "config.h"
/*
* Check whether "cp" is a valid ascii representation
* of an Internet address and convert to a binary address.
...
...
src/include/c.h
View file @
8f5561a0
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: c.h,v 1.
59 1999/07/13 20:00:32
momjian Exp $
* $Id: c.h,v 1.
60 1999/07/17 04:12:09
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -46,6 +46,10 @@
on some platforms, and we only want our definitions used if stdlib.h doesn't
have its own. The same goes for stddef and stdarg if present.
*/
#include "config.h"
#include <stdlib.h>
#ifdef STDC_HEADERS
#include <stddef.h>
...
...
@@ -103,12 +107,6 @@ typedef bool *BoolPtr;
* ----------------------------------------------------------------
*/
/*
* We used to define const, signed, volatile, and inline as empty
* if __STDC__ wasn't defined. Now we let configure test whether
* those keywords work; config.h defines them as empty if not.
*/
/*
* CppAsString
* Convert the argument to a string, using the C preprocessor.
...
...
src/include/postgres.h
View file @
8f5561a0
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1995, Regents of the University of California
*
* $Id: postgres.h,v 1.2
5 1999/07/16 17:07:24
momjian Exp $
* $Id: postgres.h,v 1.2
6 1999/07/17 04:12:10
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -36,9 +36,6 @@
#define POSTGRES_H
#include "postgres_ext.h"
#ifndef WIN32
#include "config.h"
#endif
#include "c.h"
#include "utils/elog.h"
#include "utils/mcxt.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment