fix clobbering of errno in get(pw|gr)([ug]id|nam) by fclose
[musl] / src / string / wcswcs.c
1 #include <wchar.h>
2
3 wchar_t *wcswcs(const wchar_t *haystack, const wchar_t *needle)
4 {
5         return wcsstr(haystack, needle);
6 }