rename to_bcd8 and from_bcd8 to cdio_to_bcd8 and cdio_from_bcd8.

(N. Boullis)

lib/Makefile.am: avoid non-GNU ld options when --without-versioned-libs is
in effect.
This commit is contained in:
rocky
2004-11-15 01:34:09 +00:00
parent b8fed52754
commit 976f6a6879
4 changed files with 20 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: util.h,v 1.3 2004/10/31 06:07:26 rocky Exp $
$Id: util.h,v 1.4 2004/11/15 01:34:09 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
@@ -103,8 +103,16 @@ _cdio_strlenv(char **str_array);
char **
_cdio_strsplit(const char str[], char delim);
uint8_t to_bcd8(uint8_t n);
uint8_t from_bcd8(uint8_t p);
uint8_t cdio_to_bcd8(uint8_t n);
uint8_t cdio_from_bcd8(uint8_t p);
static inline __attribute__((deprecated))
uint8_t to_bcd8(uint8_t n) {
return cdio_to_bcd8(n);
}
static inline __attribute__((deprecated))
uint8_t from_bcd8(uint8_t p) {
return cdio_from_bcd8(p);
}
#ifdef __cplusplus
}