From c4715aef59386ddc0fbc87b29c2980c7c4cb57c7 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 12:52:58 +0200 Subject: [PATCH] Move utime.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => utime}/utime.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => utime}/utime.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index 8920f86d..30d9ef28 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -398,7 +398,7 @@ unistd/unlinkat.o \ unistd/unlink.o \ unistd/usleep.o \ unistd/write.o \ -utime.o \ +utime/utime.o \ vscanf.o \ OBJS=\ diff --git a/libc/utime.cpp b/libc/utime/utime.cpp similarity index 98% rename from libc/utime.cpp rename to libc/utime/utime.cpp index 1367435c..261cc170 100644 --- a/libc/utime.cpp +++ b/libc/utime/utime.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 . - utime.cpp + utime/utime.cpp Change file last access and modification times. *******************************************************************************/