Remove new set of LIBC_PRIVATE symbols from libc

Bug: http://b/26234924
Change-Id: If0acb2105c75bf9e6dd97230391f3944157990ae
This commit is contained in:
Dimitry Ivanov
2016-01-04 17:21:53 -08:00
parent 1155883bdd
commit 6bef207c7b
30 changed files with 6 additions and 604 deletions

View File

@@ -43,12 +43,11 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
#define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
#define bzero(b, len) (void)(__builtin_memset((b), '\0', (len)))
int bcmp(const void *, const void *, size_t);
void bcopy(const void *, void *, size_t);
void bzero(void *, size_t);
int ffs(int);
char *index(const char *, int);
char *rindex(const char *, int);
int strcasecmp(const char *, const char *);
int strncasecmp(const char *, const char *, size_t);
__END_DECLS