sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 7a0c2669fb92e1c09e6e4976a53dad3646624bd2
parent 48cc842aa905ebc8694c53940a2facb30ec23d67
Author: sin <sin@2f30.org>
Date:   Fri, 30 Jan 2015 14:02:59 +0000

Remember to include limits.h for UINT_MAX

Diffstat:
Msleep.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sleep.c b/sleep.c @@ -1,4 +1,5 @@ /* See LICENSE file for copyright and license details. */ +#include <limits.h> #include <stdlib.h> #include <unistd.h>