libs/libc/stdio: Rename lib_dtoa.c to legacy_dtoa.c; rename lib_libvsprint.c to legacy_libvsprintf.c
This commit is contained in:
parent
76a2f6c2a2
commit
f12eda8a05
|
@ -47,9 +47,9 @@ CSRCS += lib_libsnoflush.c
|
|||
|
||||
ifeq ($(CONFIG_LIBC_PRINT_LEGACY),y)
|
||||
|
||||
CSRCS += lib_libvsprintf.c
|
||||
CSRCS += legacy_libvsprintf.c
|
||||
ifeq ($(CONFIG_LIBC_FLOATINGPOINT),y)
|
||||
CSRCS += lib_dtoa.c
|
||||
CSRCS += legacy_dtoa.c
|
||||
endif
|
||||
|
||||
#else
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* libs/libc/stdio/lib_dtoa.c
|
||||
* libs/libc/stdio/legacy_dtoa.c
|
||||
*
|
||||
* This file was ported to NuttX by Yolande Cates.
|
||||
*
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* libs/libc/stdio/lib_libvsprintf.c
|
||||
* libs/libc/stdio/legacy_libvsprintf.c
|
||||
*
|
||||
* Copyright (C) 2007-2012, 2018-2019 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
Loading…
Reference in New Issue