Files
Upsilon/liba/include/bridge/strings.h
2023-05-06 13:04:15 +01:00

22 lines
229 B
C

#ifndef LIBA_STRINGS_H
#define LIBA_STRINGS_H
#if (_PRIZM)
#include <stdlib.h>
#include "../private/macros.h"
LIBA_BEGIN_DECLS
void bzero(void * s, size_t n);
LIBA_END_DECLS
#else
#include_next <strings.h>
#endif
#endif