mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
5a85a7dda1
- the macros are gone - there's no more code in this file, LGPL + GPL = GPL, and the code that was moved to lib/bcd.c is anyway trivial Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
9 lines
195 B
C
9 lines
195 B
C
#ifndef _BCD_H
|
|
#define _BCD_H
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
unsigned bcd2bin(unsigned char val) __attribute_const__;
|
|
unsigned char bin2bcd(unsigned val) __attribute_const__;
|
|
|
|
#endif /* _BCD_H */
|