summaryrefslogtreecommitdiffstats
path: root/zix/bitset.c
diff options
context:
space:
mode:
Diffstat (limited to 'zix/bitset.c')
-rw-r--r--zix/bitset.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/zix/bitset.c b/zix/bitset.c
index 155fc82..dbb3d63 100644
--- a/zix/bitset.c
+++ b/zix/bitset.c
@@ -14,12 +14,10 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <string.h>
-
-#include <stdio.h>
-
#include "zix/bitset.h"
+#include <string.h>
+
/** Number of bits per ZixBitset element (ala CHAR_BIT). */
#define ZIX_BITSET_ELEM_BIT (CHAR_BIT * sizeof(ZixBitset))