X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fff-binary.c;h=688d6ae468dfc2ca000874dfb29e738cf14404b9;hb=a6368763d08042207963c941b1c52b5fafcb0cb3;hp=47163f29717b5e6b63ad4204d4696552b471cbb9;hpb=1cf8ac51f5495ccd5187dc220ffc69e95d6e0cfc;p=libucw.git diff --git a/ucw/ff-binary.c b/ucw/ff-binary.c index 47163f29..688d6ae4 100644 --- a/ucw/ff-binary.c +++ b/ucw/ff-binary.c @@ -7,9 +7,9 @@ * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" -#include "ucw/fastbuf.h" -#include "ucw/ff-binary.h" +#include +#include +#include #define GEN(type, name, size, endian) \ type bget##name##_##endian##_slow(struct fastbuf *f) \ @@ -29,6 +29,6 @@ void bput##name##_##endian##_##slow(struct fastbuf *f, type x) \ #define FF_ALL(type, name, size) GEN(type,name,size,be) GEN(type,name,size,le) FF_ALL(int, w, 16) -FF_ALL(uns, l, 32) +FF_ALL(uint, l, 32) FF_ALL(u64, q, 64) FF_ALL(u64, 5, 40)