1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/net/ratoolset/files/patch-aa

19 lines
400 B
Plaintext
Raw Normal View History

--- src/misc/net.hh.orig Sun Sep 19 16:59:27 1999
+++ src/misc/net.hh Sun Sep 19 17:00:00 1999
@@ -86,12 +86,12 @@
int bind (...);
int listen (...);
int accept (...);
-int recvfrom(...);
+ssize_t recvfrom(...);
int gethostname (...);
int setsockopt (...);
int select (...);
-int sendto (...);
-int send (...);
+ssize_t sendto (...);
+ssize_t send (...);
int gettimeofday (...);
}