From 29fc8bf8c8bfc6f45c3f0353bfb80c08792dfe6a Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 13:33:21 +0200 Subject: [PATCH] Move dlfcn.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => dlfcn}/dlfcn.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => dlfcn}/dlfcn.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index 70272cef..047337ab 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -173,7 +173,7 @@ $(CPUDIR)/signal.o \ $(CPUDIR)/syscall.o \ dirent/fddir-sortix.o \ dirent/scandir.o \ -dlfcn.o \ +dlfcn/dlfcn.o \ error/errorprint.o \ fcloseall.o \ fcntl/creat.o \ diff --git a/libc/dlfcn.cpp b/libc/dlfcn/dlfcn.cpp similarity index 98% rename from libc/dlfcn.cpp rename to libc/dlfcn/dlfcn.cpp index 5230d715..c381dcda 100644 --- a/libc/dlfcn.cpp +++ b/libc/dlfcn/dlfcn.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 . - dlfcn.cpp + dlfcn/dlfcn.cpp Dynamic linking. *******************************************************************************/