/* put together the length field, possibly using BIGREQUESTS */
for(i = 0; i < req->count; ++i)
- longlen += XCB_CEIL(vector[i].iov_len) >> 2;
+ longlen += (vector[i].iov_len + 3) >> 2;
if(longlen > c->setup->maximum_request_length)
{
/* xcb_util.c */
-/* Index of nearest 4-byte boundary following E. */
-#define XCB_CEIL(E) (((E)+3)&~3)
-
-#define XCB_PAD(i) ((4 - (i & 3)) & 3)
+#define XCB_PAD(i) (-(i) & 3)
int _xcb_set_fd_flags(const int fd);
int _xcb_read_block(const int fd, void *buf, const size_t len);