From 14118935d2d6863a4746223d8e22c2e58ffebab5 Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 7 Feb 2002 11:42:26 +0000 Subject: pthread_delay_np: Add missing "return(0)". --- nonportable.c | 1 + 1 file changed, 1 insertion(+) (limited to 'nonportable.c') diff --git a/nonportable.c b/nonportable.c index 0d97300..c465d57 100644 --- a/nonportable.c +++ b/nonportable.c @@ -122,6 +122,7 @@ pthread_delay_np (struct timespec * interval) pthread_testcancel(); Sleep(0); pthread_testcancel(); + return (0); } /* convert secs to millisecs */ -- cgit v1.2.3