diff options
Diffstat (limited to 'src/strings/bzero.c')
| -rw-r--r-- | src/strings/bzero.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/strings/bzero.c b/src/strings/bzero.c new file mode 100644 index 00000000..3d15579c --- /dev/null +++ b/src/strings/bzero.c @@ -0,0 +1,10 @@ +#include <strings.h> + +void bzero(void*s, size_t n) +{ + return 0; +} + +/* +XOPEN(400,700) +*/ |
