2018-12-02 22:51:26 +08:00
|
|
|
/*
|
2019-06-26 00:25:56 +08:00
|
|
|
* Copyright (c) 2019 Intel Corporation
|
2018-12-02 22:51:26 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_CRC_H_
|
|
|
|
#define ZEPHYR_INCLUDE_CRC_H_
|
|
|
|
|
2019-06-26 00:25:56 +08:00
|
|
|
#ifndef CONFIG_COMPAT_INCLUDES
|
|
|
|
#warning "This header file has moved, include <sys/crc.h> instead."
|
2018-12-02 22:51:26 +08:00
|
|
|
#endif
|
|
|
|
|
2019-06-26 00:25:56 +08:00
|
|
|
#include <sys/crc.h>
|
2018-12-02 22:51:26 +08:00
|
|
|
|
2019-06-26 00:25:56 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_CRC_H_ */
|