X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/0ea663ea01e6cf6b552e99e3416a38ccb56b0a5f..9d60e6e466bd8f61c23d4664eba05200376cc1b9:/sds.h diff --git a/sds.h b/sds.h index 582cb2f3..0fc2c928 100644 --- a/sds.h +++ b/sds.h @@ -32,14 +32,12 @@ #define __SDS_H #include -#include typedef char *sds; struct sdshdr { - int len; - unsigned short free; - unsigned short _len; /* USHRT_MAX if it is a "long" sds string */ + long len; + long free; char buf[]; };