* include/sys/socket.h (sockatmark): Add prototype.
This commit is contained in:
parent
d9792ab0bf
commit
f8a6c96306
|
@ -1,3 +1,7 @@
|
||||||
|
2015-02-24 Ken Brown <kbrown@cornell.edu>
|
||||||
|
|
||||||
|
* include/sys/socket.h (sockatmark): Add prototype.
|
||||||
|
|
||||||
2015-02-23 Corinna Vinschen <corinna@vinschen.de>
|
2015-02-23 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* userinfo.h (struct fetch_full_grp_t): Define only when building
|
* userinfo.h (struct fetch_full_grp_t): Define only when building
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* sys/socket.h
|
/* sys/socket.h
|
||||||
|
|
||||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2009, 2010,
|
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.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ extern "C"
|
||||||
socklen_t *__optlen);
|
socklen_t *__optlen);
|
||||||
int shutdown (int, int);
|
int shutdown (int, int);
|
||||||
int socket (int __family, int __type, int __protocol);
|
int socket (int __family, int __type, int __protocol);
|
||||||
|
int sockatmark (int __fd);
|
||||||
int socketpair (int __domain, int __type, int __protocol, int *__socket_vec);
|
int socketpair (int __domain, int __type, int __protocol, int *__socket_vec);
|
||||||
|
|
||||||
struct servent *getservbyname (const char *__name, const char *__proto);
|
struct servent *getservbyname (const char *__name, const char *__proto);
|
||||||
|
|
Loading…
Reference in New Issue