format fix
[tridge/junkcode.git] / bzero.c
1 void __bzero(void *s, int n)
2 {
3         bzero(s, n);
4 }