RGMP 4.0 update from Qiang Yu

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5305 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-11-04 15:12:55 +00:00
parent 6a4d802afc
commit 308516c028
33 changed files with 2141 additions and 573 deletions

View file

@ -59,6 +59,7 @@
*
****************************************************************************/
#ifndef CONFIG_ARCH_STRCHR
FAR char *strchr(FAR const char *s, int c)
{
if (s)
@ -74,3 +75,4 @@ FAR char *strchr(FAR const char *s, int c)
return NULL;
}
#endif