https://bitbucket.org/hudson/magic-lantern
Revision 400a79b30c93903e952f3de0f1ad7836522674d9 authored by a1ex on 25 May 2011, 12:39:31 UTC, committed by a1ex on 25 May 2011, 12:39:31 UTC
1 parent e7158d0
Raw File
Tip revision: 400a79b30c93903e952f3de0f1ad7836522674d9 authored by a1ex on 25 May 2011, 12:39:31 UTC
Fixed possible crash in ghost image
Tip revision: 400a79b
my_memset.c
// uses less memory than the one in libc.a
char* memset(char* dest, char val, int n)
{
	int i;
	for(i = 0; i < n; i++)
		*dest++ = val;
	return dest;
}
back to top