• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
1#ifndef _BCD_H
2#define _BCD_H
3
4#include <linux/compiler.h>
5
6unsigned bcd2bin(unsigned char val) __attribute_const__;
7unsigned char bin2bcd(unsigned val) __attribute_const__;
8
9#endif /* _BCD_H */
10