Make tcp_connect() void; it will eventually have no failure case.

This commit is contained in:
Michael Brown
2006-04-30 02:13:52 +00:00
parent 9c9208a132
commit 7af478b30d
4 changed files with 7 additions and 17 deletions

View File

@@ -41,6 +41,6 @@ struct hello_request {
int complete;
};
extern int hello_connect ( struct hello_request *hello );
extern void hello_connect ( struct hello_request *hello );
#endif