mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-09 23:27:35 -04:00
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
|