Break libblkid into 4 libraries: libblkid, libuuid, libutil-linux and libfdisk. This should help in later patch updates. Change-Id: I680d9a7feb031e5c29a603e9c58aff4b65826262
10 lines
184 B
C
10 lines
184 B
C
#ifndef UTIL_LINUX_CRC64_H
|
|
#define UTIL_LINUX_CRC64_H
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
|
|
extern uint64_t crc64(uint64_t seed, const unsigned char *data, size_t len);
|
|
|
|
#endif
|