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
bce901af
Commit
bce901af
authored
Jan 17, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32 new files.
parent
7a6b562f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
0 deletions
+28
-0
src/win32/README
src/win32/README
+3
-0
src/win32/endian.h
src/win32/endian.h
+8
-0
src/win32/tcp.h
src/win32/tcp.h
+6
-0
src/win32/un.h
src/win32/un.h
+11
-0
No files found.
src/win32/README
0 → 100644
View file @
bce901af
Add the included headers endian.h into Cygwin's include/, tcp.h into
include/netinet, and un.h into include/sys.
src/win32/endian.h
0 → 100644
View file @
bce901af
#ifndef _ENDIAN_H_
#define _ENDIAN_H_
/* JKR added file, all hacks will be in the files added, not in EGCS */
#include <sys/param.h>
#endif
\ No newline at end of file
src/win32/tcp.h
0 → 100644
View file @
bce901af
#ifndef _INET_TCP_
#define _INET_TCP_
/* JKR added file, all hacks will be in the files added, not in EGCS */
#endif
/* _INET_TCP_ */
src/win32/un.h
0 → 100644
View file @
bce901af
#ifndef _SYS_UN_H
#define _SYS_UN_H
/* JKR added file, all hacks will be in the files added, not in EGCS */
struct
sockaddr_un
{
short
sun_family
;
/* AF_UNIX */
char
sun_path
[
108
];
/* path name (gag) */
};
#endif
/* _SYS_UN_H */
\ No newline at end of file
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