X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=crc%2Fcrc32c.h;h=be03c1a27cc28ad851b55e5bd47e2dbb5192a690;hb=c619c0fdb28fbe043d7a7f75bba2ea82b4eca298;hp=5d664079b940fcb1691ceb569e7882fee7b57966;hpb=847d544cce05157ec36f50b8214b26aff83aef01;p=fio.git diff --git a/crc/crc32c.h b/crc/crc32c.h index 5d664079..be03c1a2 100644 --- a/crc/crc32c.h +++ b/crc/crc32c.h @@ -13,16 +13,17 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef CRC32C_H #define CRC32C_H #include "../arch/arch.h" +#include "../lib/types.h" extern uint32_t crc32c_sw(unsigned char const *, unsigned long); -extern int crc32c_arm64_available; -extern int crc32c_intel_available; +extern bool crc32c_arm64_available; +extern bool crc32c_intel_available; #ifdef ARCH_HAVE_ARM64_CRC_CRYPTO extern uint32_t crc32c_arm64(unsigned char const *, unsigned long);