1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-03 21:00:15 +00:00
reactos/sdk/lib/crt/stdlib/atold.c

8 lines
156 B
C

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <stdlib.h>
long double
_atold(const char *ascii)
{
return _strtold(ascii, 0);
}