Add strchr() and putchar() to local C library

Change-Id: I3659e119a242f8ef828e32bfdf5d0b4b7ac4f716
This commit is contained in:
Harry Liebel
2013-12-12 16:46:30 +00:00
committed by Dan Handley
parent 0f702c6e70
commit 1bc9e1f6eb
7 changed files with 134 additions and 6 deletions

View File

@@ -55,6 +55,7 @@ void *memcpy(void * __restrict, const void * __restrict, size_t);
void *memmove(void *, const void *, size_t);
void *memset(void *, int, size_t);
char *strchr(const char *, int) __pure;
size_t strlen(const char *) __pure;
__END_DECLS