Render96ex/include/PR/os_libc.h

16 lines
343 B
C
Raw Normal View History

2019-08-25 00:46:40 -04:00
#ifndef _OS_LIBC_H_
2019-11-03 14:36:27 -05:00
#define _OS_LIBC_H_
2019-08-25 00:46:40 -04:00
2019-11-03 14:36:27 -05:00
#include "ultratypes.h"
2019-08-25 00:46:40 -04:00
2020-05-16 15:30:27 -04:00
#ifdef OSX_BUILD
#include <strings.h> // OSX doesn't like it not being included?
#else
2019-11-03 14:36:27 -05:00
// Old deprecated functions from strings.h, replaced by memcpy/memset.
extern void bcopy(const void *, void *, size_t);
extern void bzero(void *, size_t);
2019-08-25 00:46:40 -04:00
2020-05-16 15:30:27 -04:00
#endif
2019-08-25 00:46:40 -04:00
#endif /* !_OS_LIBC_H_ */