X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fconfig.h;h=a4768b721f073ed5c6e0769458ccd0c3d1244f00;hb=ec6703bb4d58e504fde8ea8429f9b26ab6632696;hp=88168d1a245bf964f356f658c7b0241034a173db;hpb=c95adc518d2cfa35b26e0afd75fae07607fbb438;p=libucw.git diff --git a/ucw/config.h b/ucw/config.h index 88168d1a..a4768b72 100644 --- a/ucw/config.h +++ b/ucw/config.h @@ -36,9 +36,12 @@ 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 s64 timestamp_t; /** Milliseconds since an unknown epoch **/ +// FIXME: This should be removed soon +typedef uint uns; /** Backwards compatible alias for `uint' ***/ + #ifdef CONFIG_UCW_LARGE_FILES typedef s64 ucw_off_t; /** File position (either 32- or 64-bit, depending on `CONFIG_UCW_LARGE_FILES`). **/ #else