From c109f5165eb71134402057d8b15f13a3d81f4fa5 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 27 Oct 2013 22:30:56 +0100 Subject: [PATCH] Fix fnewfile(3) being in a file with the wrong name. --- libc/Makefile | 2 +- libc/{fnewline.cpp => fnewfile.cpp} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{fnewline.cpp => fnewfile.cpp} (98%) diff --git a/libc/Makefile b/libc/Makefile index d2c8bbdf..f3002124 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -41,7 +41,7 @@ fgetc.o \ fgets.o \ flbf.o \ flushlfb.o \ -fnewline.o \ +fnewfile.o \ format.o \ fpending.o \ fpurge.o \ diff --git a/libc/fnewline.cpp b/libc/fnewfile.cpp similarity index 98% rename from libc/fnewline.cpp rename to libc/fnewfile.cpp index 38d53aa8..8b62c247 100644 --- a/libc/fnewline.cpp +++ b/libc/fnewfile.cpp @@ -17,7 +17,7 @@ You should have received a copy of the GNU Lesser General Public License along with the Sortix C Library. If not, see . - fnewline.cpp + fnewfile.cpp Allocates and initializes a simple FILE object ready for construction. *******************************************************************************/