diff options
author | Andy Wingo <wingo@pobox.com> | 2013-03-09 15:56:30 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-03-09 15:56:30 +0100 |
commit | 7e369c38993cc7cf4063a6cadc8496552abf323d (patch) | |
tree | 46e0be00b6a6a5f2254c2d7b086f05d93da85330 /libguile/win32-socket.h | |
parent | 4c187d46d40aff1601f38675c11f92a73a13a7c9 (diff) | |
download | guile-7e369c38993cc7cf4063a6cadc8496552abf323d.tar.gz |
remove mingw32 implementations of {get,end,set}{serv,proto}ent
* libguile/win32-socket.h:
* libguile/win32-socket.c (getservent, endservent, setservent)
(getprotoent, endprotoent, setprotoent): Remove mingw32 wrappers.
Their place is in gnulib, if anywhere.
Diffstat (limited to 'libguile/win32-socket.h')
-rw-r--r-- | libguile/win32-socket.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libguile/win32-socket.h b/libguile/win32-socket.h index 4ab9b942a..0168c064c 100644 --- a/libguile/win32-socket.h +++ b/libguile/win32-socket.h @@ -3,7 +3,7 @@ #ifndef SCM_WIN32_SOCKET_H #define SCM_WIN32_SOCKET_H -/* Copyright (C) 2001, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2006, 2013 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -32,11 +32,4 @@ char * scm_i_socket_strerror (int error); void scm_i_init_socket_Win32 (void); char * scm_i_socket_filename (char *file); -struct servent * getservent (void); -void setservent (int stayopen); -void endservent (void); -struct protoent * getprotoent (void); -void setprotoent (int stayopen); -void endprotoent (void); - #endif /* SCM_WIN32_SOCKET_H */ |