]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/config.h
Types: Defined `uint' as a replacement for `uns'.
[libucw.git] / ucw / config.h
index 88168d1a245bf964f356f658c7b0241034a173db..5dcc88915929faad3f0ea579f949ae89ac16595d 100644 (file)
@@ -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