URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [or32/] [lib/] [bzero.c] - Rev 1782
Compare with Previous | Blame | View Log
#include <linux/types.h> #include <linux/string.h> /* FIXME: put this over in libgcc.a on the compiler side */ void bzero(void * s, size_t count) { memset(s, '\0', count); }