aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/posix/strings.h
blob: 8619ba28656af01c9489a5fd3b97d125da13cd11 (plain)
1
2
3
4
5
6
7
8
#ifndef _POSIX_STRINGS_H
#define _POSIX_STRINGS_H

#include <string.h>

#define bzero(ptr, size) (memset((ptr), '\0', (size)), (void) 0)

#endif /* _POSIX_STRINGS_H */