diff options
author | 2007-05-04 22:14:36 +0000 | |
---|---|---|
committer | 2007-05-04 22:14:36 +0000 | |
commit | 3b42588c8256208c5d794a6ce372a67857136db8 (patch) | |
tree | 63e3a8bc3a176a4e242ed84a2edbfb9097244f92 /sys/lib/libkern/libkern.h | |
parent | call the right function to fill the rxf fifo after rxd (diff) | |
download | wireguard-openbsd-3b42588c8256208c5d794a6ce372a67857136db8.tar.xz wireguard-openbsd-3b42588c8256208c5d794a6ce372a67857136db8.zip |
move bcd tables to the only place that uses them (the unused mcd driver);
ok miod
Diffstat (limited to 'sys/lib/libkern/libkern.h')
-rw-r--r-- | sys/lib/libkern/libkern.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/lib/libkern/libkern.h b/sys/lib/libkern/libkern.h index c92e2ce5f38..8b326f6f377 100644 --- a/sys/lib/libkern/libkern.h +++ b/sys/lib/libkern/libkern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libkern.h,v 1.22 2004/08/07 00:38:32 deraadt Exp $ */ +/* $OpenBSD: libkern.h,v 1.23 2007/05/04 22:14:37 deraadt Exp $ */ /* $NetBSD: libkern.h,v 1.7 1996/03/14 18:52:08 christos Exp $ */ /*- @@ -174,8 +174,4 @@ int getsn(char *, int); char *strchr(const char *, int); char *strrchr(const char *, int); -extern u_int8_t const __bcd2bin[], __bin2bcd[]; -#define bcd2bin(b) (__bcd2bin[(b)&0xff]) -#define bin2bcd(b) (__bin2bcd[(b)&0xff]) - #endif /* __LIBKERN_H__ */ |