zephyr/include/crc32.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

22 lines
324 B
C

/*
* Copyright (c) 2018 Workaround GmbH.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file
*
* @brief CRC 32 computation function
*/
#ifndef ZEPHYR_INCLUDE_CRC32_H_
#define ZEPHYR_INCLUDE_CRC32_H_
#include <crc.h>
#warning This include file is deprecated in favor of crc.h. \
Include crc.h instead.
#endif