5 lines
85 B
C
5 lines
85 B
C
|
#ifndef _STDDEF_H_
|
||
|
#define _STDDEF_H_
|
||
|
#define bzero(s, n) memset((s), 0, (n))
|
||
|
#endif
|