From 3d18ed9a43623a4ae502bc2bfec58cdedeebe8ee Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 00:07:57 +0200 Subject: [PATCH] Move ctype.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => ctype}/ctype.c | 2 +- libc/sortix/ctype/.gitignore | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => ctype}/ctype.c (99%) create mode 100644 libc/sortix/ctype/.gitignore diff --git a/libc/Makefile b/libc/Makefile index 1829d1dc..9c4d5e16 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -20,7 +20,7 @@ FREEOBJS=\ assert/_assert.o \ clearerr.o \ c++.o \ -ctype.o \ +ctype/ctype.o \ dirent/alphasort.o \ dirent/dir.o \ dirent/versionsort.o \ diff --git a/libc/ctype.c b/libc/ctype/ctype.c similarity index 99% rename from libc/ctype.c rename to libc/ctype/ctype.c index 4fc30f9a..f0ecb55c 100644 --- a/libc/ctype.c +++ b/libc/ctype/ctype.c @@ -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 . - ctype.c + ctype/ctype.c Character types. *******************************************************************************/ diff --git a/libc/sortix/ctype/.gitignore b/libc/sortix/ctype/.gitignore new file mode 100644 index 00000000..e69de29b