From 14c32c3433005c912816b303716d54bfe63e437b Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 14:06:10 +0200 Subject: [PATCH] Move libc initialization functions into their own directory. --- libc/Makefile | 2 +- libc/{ => init}/init.cpp | 2 +- libc/sortix/init/.gitignore | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => init}/init.cpp (99%) create mode 100644 libc/sortix/init/.gitignore diff --git a/libc/Makefile b/libc/Makefile index 340991bd..289bc000 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -188,7 +188,7 @@ fsmarshall/fsm_mkserver.o \ fsmarshall/fsm_recv.o \ fsmarshall/fsm_send.o \ grp/grent.o \ -init.o \ +init/init.o \ libgen/basename.o \ libgen/dirname.o \ locale/localeconv.o \ diff --git a/libc/init.cpp b/libc/init/init.cpp similarity index 99% rename from libc/init.cpp rename to libc/init/init.cpp index dd3e8413..19183f5e 100644 --- a/libc/init.cpp +++ b/libc/init/init.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 . - init.cpp + init/init.cpp Initializes the process by setting up the heap, signal handling, static memory and other useful things. diff --git a/libc/sortix/init/.gitignore b/libc/sortix/init/.gitignore new file mode 100644 index 00000000..e69de29b