Fix GenFvImagei build on OS X

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@166 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2006-05-16 00:27:02 +00:00
parent 96c0505b54
commit 3101ac6bf3
3 changed files with 15 additions and 4 deletions

View File

@ -493,3 +493,12 @@ Returns:
return EFI_SUCCESS;
}
#ifdef __GNUC__
void strlwr(char *s)
{
for(;*s;s++) {
*s = tolower(*s);
}
}
#endif