sbase

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

commit 4904f26e5d3de5c5b15c439ecb614e49600a43fc
parent d8a89002d3a0a19e6d75394a622855d2a7344e4d
Author: sin <sin@2f30.org>
Date:   Tue, 17 Feb 2015 13:50:10 +0000

strings: Remember to include limits.h for INT_MAX

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

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