From bd15083e6583e188ef62009348a38daebeaaf6b8 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 13:03:58 +0200 Subject: [PATCH] Move errno.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => errno}/errno.cpp | 2 +- libc/sortix/errno/.gitignore | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => errno}/errno.cpp (98%) create mode 100644 libc/sortix/errno/.gitignore diff --git a/libc/Makefile b/libc/Makefile index 7bacc6e1..22ad909e 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -25,7 +25,7 @@ ctype/ctype.o \ dirent/alphasort.o \ dirent/dir.o \ dirent/versionsort.o \ -errno.o \ +errno/errno.o \ fabs.o \ fbufsize.o \ fclose.o \ diff --git a/libc/errno.cpp b/libc/errno/errno.cpp similarity index 98% rename from libc/errno.cpp rename to libc/errno/errno.cpp index 8be0e61d..87b8b6a8 100644 --- a/libc/errno.cpp +++ b/libc/errno/errno.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 . - errno.cpp + errno/errno.cpp Value storing a numeric value representing the last occured error. *******************************************************************************/ diff --git a/libc/sortix/errno/.gitignore b/libc/sortix/errno/.gitignore new file mode 100644 index 00000000..e69de29b