From 03ac25a6e2a225960b80cd1e7d5add51037d960a Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 12:50:37 +0200 Subject: [PATCH] Move calltrace.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => calltrace}/calltrace.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => calltrace}/calltrace.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index bc4cdd9f..8920f86d 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -165,7 +165,7 @@ arpa/inet/inet_addr.o \ arpa/inet/inet_ntoa.o \ arpa/inet/inet_ntop.o \ arpa/inet/inet_pton.o \ -calltrace.o \ +calltrace/calltrace.o \ $(CPUDIR)/calltrace.o \ $(CPUDIR)/fork.o \ $(CPUDIR)/setjmp.o \ diff --git a/libc/calltrace.cpp b/libc/calltrace/calltrace.cpp similarity index 98% rename from libc/calltrace.cpp rename to libc/calltrace/calltrace.cpp index cacff79e..6f64d7fb 100644 --- a/libc/calltrace.cpp +++ b/libc/calltrace/calltrace.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 . - calltrace.cpp + calltrace/calltrace.cpp Traverses the stack and prints the callstack. *******************************************************************************/