zephyr/include/crc8.h
Anas Nashif b8424b4cae crc: deprecate old headers and issue warning when used
Change code to use crc.h instead crc{8,16,32}.h and issue warning when
old headers are used.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2018-12-04 08:52:46 -06:00

17 lines
305 B
C

/*
* Copyright (c) 2017 Nordic Semiconductor ASA
* Copyright (c) 2015 Runtime Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_CRC8_H_
#define ZEPHYR_INCLUDE_CRC8_H_
#include <crc.h>
#warning This include file is deprecated in favor of crc.h. \
Include crc.h instead.
#endif