Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9e43730c
Commit
9e43730c
authored
Dec 06, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't include <ioctl.h> unless on __VMS.
parent
79acb9ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Modules/socketmodule.c
Modules/socketmodule.c
+3
-1
No files found.
Modules/socketmodule.c
View file @
9e43730c
...
@@ -148,7 +148,8 @@ shutdown(how) -- shut down traffic in one or both directions\n\
...
@@ -148,7 +148,8 @@ shutdown(how) -- shut down traffic in one or both directions\n\
# include <ctype.h>
# include <ctype.h>
#endif
#endif
#if defined(__VMS) && ! defined(_SOCKADDR_LEN)
#if defined(__VMS)
#if ! defined(_SOCKADDR_LEN)
# ifdef getaddrinfo
# ifdef getaddrinfo
# undef getaddrinfo
# undef getaddrinfo
# endif
# endif
...
@@ -156,6 +157,7 @@ shutdown(how) -- shut down traffic in one or both directions\n\
...
@@ -156,6 +157,7 @@ shutdown(how) -- shut down traffic in one or both directions\n\
#else
#else
# include <ioctl.h>
# include <ioctl.h>
#endif
#endif
#endif
#if defined(PYOS_OS2)
#if defined(PYOS_OS2)
# define INCL_DOS
# define INCL_DOS
...
...
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