Susv3mon says: rlim_t are unsigned

This commit is contained in:
tg
2012-03-26 21:10:44 +00:00
parent 80becae42d
commit 4f8b7de3a9
3 changed files with 10 additions and 10 deletions

6
sh.h
View File

@@ -152,9 +152,9 @@
#endif
#ifdef EXTERN
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.528 2012/03/25 14:28:14 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.529 2012/03/26 21:10:44 tg Exp $");
#endif
#define MKSH_VERSION "R40 2012/03/25"
#define MKSH_VERSION "R40 2012/03/26"
/* arithmetic types: C implementation */
#if !HAVE_CAN_INTTYPES
@@ -196,7 +196,7 @@ typedef u_int8_t uint8_t;
/* other standard types */
#if !HAVE_RLIM_T
typedef long rlim_t;
typedef unsigned long rlim_t;
#endif
#if !HAVE_SIG_T