From b78180d04d100dda427b951f5728ca911f8ae80f Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Tue, 2 Oct 2007 06:47:54 +0000
Subject: [PATCH] Removed use of XSDK (not needed since we have XPDEV).

---
 xtrn/sbl/sbbslist.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/xtrn/sbl/sbbslist.c b/xtrn/sbl/sbbslist.c
index e94221debf..bb030796be 100644
--- a/xtrn/sbl/sbbslist.c
+++ b/xtrn/sbl/sbbslist.c
@@ -4,7 +4,9 @@
 
 /* Converts Synchronet BBS List (SBL.DAB) to HTML file */
 
-#include "xsdk.h"
+#include <stdlib.h>		/* realloc */
+#include <time.h>		/* localtime */
+#include "genwrap.h"
 #include "telnet.h"
 #include "sbldefs.h"
 #include "filewrap.h"
@@ -308,7 +310,7 @@ int sockreadline(SOCKET socket, char* buf, int len, int timeout)
 			if(i==0) {
 				if((time(NULL)-start)>=timeout) 
 					return(0);
-				mswait(1);
+				SLEEP(1);
 				continue;
 			}
 			return(0);
-- 
GitLab