From 575e53644291698e43fac9096c181c35519e5f60 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 13:08:01 +0200 Subject: [PATCH] Move error.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => error}/errorprint.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => error}/errorprint.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index 22ad909e..70272cef 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -174,7 +174,7 @@ $(CPUDIR)/syscall.o \ dirent/fddir-sortix.o \ dirent/scandir.o \ dlfcn.o \ -errorprint.o \ +error/errorprint.o \ fcloseall.o \ fcntl/creat.o \ fcntl/fcntl.o \ diff --git a/libc/errorprint.cpp b/libc/error/errorprint.cpp similarity index 98% rename from libc/errorprint.cpp rename to libc/error/errorprint.cpp index 3e4a622c..a071c2f4 100644 --- a/libc/errorprint.cpp +++ b/libc/error/errorprint.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 . - errorprint.cpp + error/errorprint.cpp Functions for printing error messages to the terminal. *******************************************************************************/