From: Pavel Charvat Date: Mon, 17 Feb 2014 12:05:42 +0000 (+0100) Subject: Types: Defined `uint' as a replacement for `uns'. X-Git-Tag: v6.0~62 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=5d6ade9648c18e6bdc7cf125669e3ee244c6da1a;p=libucw.git Types: Defined `uint' as a replacement for `uns'. --- diff --git a/ucw/config.h b/ucw/config.h index 88168d1a..5dcc8891 100644 --- a/ucw/config.h +++ b/ucw/config.h @@ -36,7 +36,8 @@ typedef int32_t s32; /** Exactly 32 bits, signed **/ typedef uint64_t u64; /** Exactly 64 bits, unsigned **/ typedef int64_t s64; /** Exactly 64 bits, signed **/ -typedef unsigned int uns; /** A better pronounceable alias for `unsigned int` **/ +typedef unsigned int uint; /** A better pronounceable alias for `unsigned int` **/ +typedef uint uns; /** Backwards compatible alias for `uint' ***/ typedef s64 timestamp_t; /** Milliseconds since an unknown epoch **/ #ifdef CONFIG_UCW_LARGE_FILES