From f12eda8a0557a42349fe9d0888654b118e8a8552 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 17 Feb 2019 12:08:07 -0600 Subject: [PATCH] libs/libc/stdio: Rename lib_dtoa.c to legacy_dtoa.c; rename lib_libvsprint.c to legacy_libvsprintf.c --- libs/libc/stdio/Make.defs | 4 ++-- libs/libc/stdio/{lib_dtoa.c => legacy_dtoa.c} | 2 +- libs/libc/stdio/{lib_libvsprintf.c => legacy_libvsprintf.c} | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename libs/libc/stdio/{lib_dtoa.c => legacy_dtoa.c} (99%) rename libs/libc/stdio/{lib_libvsprintf.c => legacy_libvsprintf.c} (99%) diff --git a/libs/libc/stdio/Make.defs b/libs/libc/stdio/Make.defs index 5c0ead76ec..c868e30f5f 100644 --- a/libs/libc/stdio/Make.defs +++ b/libs/libc/stdio/Make.defs @@ -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 diff --git a/libs/libc/stdio/lib_dtoa.c b/libs/libc/stdio/legacy_dtoa.c similarity index 99% rename from libs/libc/stdio/lib_dtoa.c rename to libs/libc/stdio/legacy_dtoa.c index 75814ccab2..3cb0e20ebe 100644 --- a/libs/libc/stdio/lib_dtoa.c +++ b/libs/libc/stdio/legacy_dtoa.c @@ -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. * diff --git a/libs/libc/stdio/lib_libvsprintf.c b/libs/libc/stdio/legacy_libvsprintf.c similarity index 99% rename from libs/libc/stdio/lib_libvsprintf.c rename to libs/libc/stdio/legacy_libvsprintf.c index 9a8ccb2577..089a525802 100644 --- a/libs/libc/stdio/lib_libvsprintf.c +++ b/libs/libc/stdio/legacy_libvsprintf.c @@ -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