libs/libc/stdio: Rename lib_dtoa.c to legacy_dtoa.c; rename lib_libvsprint.c to legacy_libvsprintf.c

This commit is contained in:
Gregory Nutt 2019-02-17 12:08:07 -06:00
parent 76a2f6c2a2
commit f12eda8a05
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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.
*

View File

@ -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>