diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-12 22:26:39 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-12 22:26:39 +0000 |
commit | f3986ebb5fa156b34b51584d78a10d0d906dbcd6 (patch) | |
tree | 978bf967fd1dc1c93b3c666bb8056233359c2b03 /win32/win32sck.c | |
parent | e5fcb9beecf02e9b386345e7195a35452a87bc68 (diff) | |
download | perl-f3986ebb5fa156b34b51584d78a10d0d906dbcd6.tar.gz |
More cleanups of win32/win32*.[ch] files. win32/win32iop.h now
contains the all the declarations and macros for the win32io layer.
New std-ish functions are exported now. All win32-specific exported
functions begin with "win32_" consistently. win32 version of
init_os_extras() is now exported, so embedders can get the in-core
xsubs.
p4raw-id: //depot/win32/perl@244
Diffstat (limited to 'win32/win32sck.c')
-rw-r--r-- | win32/win32sck.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/win32sck.c b/win32/win32sck.c index 9de7a149ad..b4f40f0de1 100644 --- a/win32/win32sck.c +++ b/win32/win32sck.c @@ -132,8 +132,9 @@ start_sockets(void) #ifndef USE_SOCKETS_AS_HANDLES +#undef fdopen FILE * -myfdopen(int fd, char *mode) +my_fdopen(int fd, char *mode) { FILE *fp; char sockbuf[256]; |