From a329235397ec3903a843b0b4adb0ee933008e828 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 15:27:48 +0200 Subject: [PATCH] Move timespec.h functions into their own directory. --- libc/Makefile | 2 +- libc/sortix/timespec/.gitignore | 0 libc/{ => timespec}/timespec.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 libc/sortix/timespec/.gitignore rename libc/{ => timespec}/timespec.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index b9f94c14..9c58b077 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -135,7 +135,7 @@ time/asctime_r.o \ time/gmtime.o \ time/gmtime_r.o \ time/mktime.o \ -timespec.o \ +timespec/timespec.o \ time/strftime.o \ time/timegm.o \ ungetc.o \ diff --git a/libc/sortix/timespec/.gitignore b/libc/sortix/timespec/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/libc/timespec.cpp b/libc/timespec/timespec.cpp similarity index 98% rename from libc/timespec.cpp rename to libc/timespec/timespec.cpp index 5984ddf9..973e8e09 100644 --- a/libc/timespec.cpp +++ b/libc/timespec/timespec.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 . - timespec.cpp + timespec/timespec.cpp Utility functions for manipulation of struct timespec. *******************************************************************************/