1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Zend/zend_bitset: include cleanup

This commit is contained in:
Max Kellermann
2023-01-04 21:56:30 +01:00
committed by George Peter Banyard
parent 623e2e9fc6
commit 46371f4eb3

View File

@@ -19,6 +19,13 @@
#ifndef _ZEND_BITSET_H_
#define _ZEND_BITSET_H_
#include "zend_portability.h" // for zend_always_inline
#include "zend_long.h"
#include <stdint.h>
#include <string.h>
typedef zend_ulong *zend_bitset;
#define ZEND_BITSET_ELM_SIZE sizeof(zend_ulong)