1#ifndef _OS_LIBC_H_ 2#define _OS_LIBC_H_ 3 4#include "ultratypes.h" 5 6#ifndef TARGET_MACOS 7// Old deprecated functions from strings.h, replaced by memcpy/memset. 8extern void bcopy(const void *, void *, size_t); 9extern void bzero(void *, size_t); 10#endif 11 12#endif /* !_OS_LIBC_H_ */ 13 14