| 1234567891011121314151617181920212223 |
- /*
- * memset.h
- * prototypes for memset.c
- *
- */
- #ifndef _EGG_COMPAT_MEMSET_H
- #define _EGG_COMPAT_MEMSET_H
- #include "src/common.h"
- #include <string.h>
- #ifndef HAVE_MEMSET
- /* Use our own implementation. */
- void *memset(void *dest, int c, size_t n);
- #endif
- /* Use memset instead of bzero.
- */
- #undef bzero
- #define bzero(dest, n) memset(dest, 0, n)
- #endif /* !__EGG_COMPAT_MEMSET_H */
|