mirror of
https://github.com/ctm/syn68k.git
synced 2024-11-25 07:32:17 +00:00
12 lines
196 B
C
12 lines
196 B
C
#define INLINE_CHECKSUM
|
|
#include "checksum.h"
|
|
|
|
|
|
#ifdef CHECKSUM_BLOCKS
|
|
uint32
|
|
compute_block_checksum (const Block *b)
|
|
{
|
|
return inline_compute_block_checksum (b);
|
|
}
|
|
#endif /* CHECKSUM_BLOCKS */
|