Initial commit

This commit is contained in:
diegocr
2010-07-27 16:58:17 +00:00
commit 27365e3686
329 changed files with 16486 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <string.h>
#include "stabs.h"
char *strchr(const char *s,int c)
{
while (*s!=(char)c)
if (!*s++)
{ s = (char *)0; break; }
return (char *)s;
}
ALIAS(index,strchr);