diff options
author | ache <ache@FreeBSD.org> | 1996-08-12 19:18:47 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-08-12 19:18:47 +0000 |
commit | bc4e65eedce64416d92f92293e11b45b10507633 (patch) | |
tree | 3c68013f578e2ddb31f24c384d145f44a9762a0d /lib/libc | |
parent | 1563880d65c4bda89a2d4c4504dd8b0f834322d4 (diff) | |
download | FreeBSD-src-bc4e65eedce64416d92f92293e11b45b10507633.zip FreeBSD-src-bc4e65eedce64416d92f92293e11b45b10507633.tar.gz |
Remove old version hooks
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/locale/collate.h | 3 | ||||
-rw-r--r-- | lib/libc/locale/collcmp.c | 11 |
2 files changed, 2 insertions, 12 deletions
diff --git a/lib/libc/locale/collate.h b/lib/libc/locale/collate.h index 9125a3e..b083734 100644 --- a/lib/libc/locale/collate.h +++ b/lib/libc/locale/collate.h @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: collate.h,v 1.1 1995/02/16 04:24:32 ache Exp $ + * $Id: collate.h,v 1.2 1996/08/12 03:40:36 ache Exp $ */ #ifndef COLLATE_H_INCLUDED @@ -64,7 +64,6 @@ void __collate_lookup __P((u_char *, int *, int *, int *)); #ifdef COLLATE_DEBUG void __collate_print_tables __P((void)); #endif -int __collcmp __P((u_char, u_char)); __END_DECLS #endif /* not COLLATE_H_INCLUDED */ diff --git a/lib/libc/locale/collcmp.c b/lib/libc/locale/collcmp.c index fefa52d..d3a4040 100644 --- a/lib/libc/locale/collcmp.c +++ b/lib/libc/locale/collcmp.c @@ -26,18 +26,9 @@ #include <ctype.h> #include <string.h> +#include <limits.h> #include <locale.h> -/* will be removed ***************************/ -#include "collate.h" - -int __collcmp (c1, c2) - unsigned char c1, c2; -{ - return collate_range_cmp (c1, c2); -} -/* will be removed ***************************/ - int collate_range_cmp (c1, c2) int c1, c2; { |