summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/jffs2/include/linux/crc32.h
blob: 8d19a1eb621e378ba06ecbd9ea9561aad7de5940 (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef CRC32_H
#define CRC32_H

#include <cyg/crc/crc.h>

#define crc32(val, s, len) cyg_crc32_accumulate(val, (unsigned char *)s, len)

#endif