mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
9 lines
156 B
C
9 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);
|
||
|
}
|