aboutsummaryrefslogtreecommitdiffstats
path: root/memory/wrap/wcstod.c
blob: 037e210cf72744f93d63a7d490f50b2b8ea24db9 (plain) (blame)
1
2
3
4
5
6
7
#include "memory.h"
#include <wchar.h>

double _wcstod_wrap(wchar_t const *restrict string, wchar_t **restrict invalid)
{
	return wcstod(string, invalid);
}