diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-02-24 09:00:37 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-02-24 09:00:37 +0000 |
commit | f8a6c963061eb9dcaa0bc0582e0e31cdfcec0d3c (patch) | |
tree | f2d3798dc7d759cc8d28b551aa8fa918d1577c59 /winsup/cygwin/include/sys | |
parent | d9792ab0bf6af80ba62b3114e1252b4dfa4a4823 (diff) | |
download | cygnal-f8a6c963061eb9dcaa0bc0582e0e31cdfcec0d3c.tar.gz cygnal-f8a6c963061eb9dcaa0bc0582e0e31cdfcec0d3c.tar.bz2 cygnal-f8a6c963061eb9dcaa0bc0582e0e31cdfcec0d3c.zip |
* include/sys/socket.h (sockatmark): Add prototype.
Diffstat (limited to 'winsup/cygwin/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/socket.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/include/sys/socket.h b/winsup/cygwin/include/sys/socket.h index 2d66abb26..179293f45 100644 --- a/winsup/cygwin/include/sys/socket.h +++ b/winsup/cygwin/include/sys/socket.h @@ -1,7 +1,7 @@ /* sys/socket.h Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2009, 2010, - 2013 Red Hat, Inc. + 2013, 2015 Red Hat, Inc. This file is part of Cygwin. @@ -43,6 +43,7 @@ extern "C" socklen_t *__optlen); int shutdown (int, int); int socket (int __family, int __type, int __protocol); + int sockatmark (int __fd); int socketpair (int __domain, int __type, int __protocol, int *__socket_vec); struct servent *getservbyname (const char *__name, const char *__proto); |