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

#include <zlib.h>
#include <cyg/crc/crc.h>

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

#endif