Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Scott <conrad.scott@dsl.pipex.com>2002-08-26 15:38:16 +0400
committerConrad Scott <conrad.scott@dsl.pipex.com>2002-08-26 15:38:16 +0400
commit647d3faf0d130f80dba8c6e78c6fb45528edd8f6 (patch)
treea9eec9333c973767d9c08c2ed0fe5e9349e2b6b7 /winsup/cygwin/fhandler.h
parent12936cb259ec6cb75d244c73de5e2bb2a7c12533 (diff)
Merged changes from HEAD
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 6f9a5cbe5..ec72091e3 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -398,12 +398,12 @@ class fhandler_socket: public fhandler_base
int getpeername (struct sockaddr *name, int *namelen);
int __stdcall read (void *ptr, size_t len) __attribute__ ((regparm (3)));
- int recvfrom (void *ptr, size_t len, unsigned int flags,
+ int recvfrom (void *ptr, size_t len, int flags,
struct sockaddr *from, int *fromlen);
int recvmsg (struct msghdr *msg, int flags);
int write (const void *ptr, size_t len);
- int sendto (const void *ptr, size_t len, unsigned int flags,
+ int sendto (const void *ptr, size_t len, int flags,
const struct sockaddr *to, int tolen);
int sendmsg (const struct msghdr *msg, int flags);