aboutsummaryrefslogtreecommitdiffstats
path: root/socket.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-12-17 20:36:26 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-12-17 20:36:26 +0000
commitf034d4af6612be9fc2b393855ec5ac95d548d5d8 (patch)
tree27e7b58016fc85adfb9cf9da82e11da4f653beb7 /socket.h
parent81d239084274f2140fb6a424fa9f1fbd3245fccd (diff)
downloadfetchmail-f034d4af6612be9fc2b393855ec5ac95d548d5d8.tar.gz
fetchmail-f034d4af6612be9fc2b393855ec5ac95d548d5d8.tar.bz2
fetchmail-f034d4af6612be9fc2b393855ec5ac95d548d5d8.zip
Eliminate SockWrite and SockPrintf.
svn path=/trunk/; revision=649
Diffstat (limited to 'socket.h')
-rw-r--r--socket.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/socket.h b/socket.h
index bdc58ca0..a69f36bc 100644
--- a/socket.h
+++ b/socket.h
@@ -21,13 +21,4 @@ returns 0 for success.
*/
int SockGets(char *buf, int len, FILE *sockfp);
-/* Ship a character array to the socket */
-#define SockWrite(buf, len, sockfp) fwrite(buf, 1, len, sockfp)
-
-/*
-Send formatted output to the socket, followed
-by a CR-LF. Returns 0 for success.
-*/
-#define SockPrintf fprintf
-
#endif /* SOCKET__ */