mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
9c4e3234ba
CORE-17713 CORE-17706 CORE-17604
14 lines
340 B
C
14 lines
340 B
C
/*
|
|
* PROJECT: ReactOS CRT library
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: Implementation of __i64tod
|
|
* COPYRIGHT: Copyright 2021 Roman Masanin <36927roma@gmail.com>
|
|
*/
|
|
|
|
#define __64tof __i64tod
|
|
#define _USE_64_BITS_
|
|
#define _USE_SIGNED_
|
|
|
|
#include "__64tof.h"
|
|
|
|
/* __i64tod is implemented in __64tof.h */
|