Only include <strings.h> for ffs() when we HAVE_FFS

This fixes breakage caused by 3d3d10a31e
This commit is contained in:
Jeff Muizelaar 2009-05-15 15:34:05 -04:00
parent 088d2a6cc7
commit a352fd4602

View file

@ -25,7 +25,9 @@
#include "cairo-skiplist-private.h"
#if HAVE_FFS
#include <strings.h> /* ffs() */
#endif
#define ELT_DATA(elt) (void *) ((char*) (elt) - list->data_size)
#define NEXT_TO_ELT(next) (skip_elt_t *) ((char *) (next) - offsetof (skip_elt_t, next))