Move strtotime*() prototypes to <time.h>

diff --git a/include/sys/time.h b/include/sys/time.h
index 6d072d7..2767a1b 100644
--- a/include/sys/time.h
+++ b/include/sys/time.h
@@ -15,8 +15,4 @@
 __extern int setitimer(int, const struct itimerval *, struct itimerval *);
 __extern int utimes(const char *, const struct timeval *);
 
-/* klibc-specific but useful since we don't have floating point */
-__extern char *strtotimeval(const char *str, struct timeval *tv);
-__extern char *strtotimespec(const char *str, struct timespec *tv);
-
 #endif /* _SYS_TIME_H */
diff --git a/include/time.h b/include/time.h
index c69c231..0f094c2 100644
--- a/include/time.h
+++ b/include/time.h
@@ -11,4 +11,8 @@
 __extern time_t time(time_t *);
 __extern int nanosleep(const struct timespec *, struct timespec *);
 
+/* klibc-specific but useful since we don't have floating point */
+__extern char *strtotimeval(const char *str, struct timeval *tv);
+__extern char *strtotimespec(const char *str, struct timespec *tv);
+
 #endif /* _TIME_H */
diff --git a/klibc/include/sys/time.h b/klibc/include/sys/time.h
index 6d072d7..2767a1b 100644
--- a/klibc/include/sys/time.h
+++ b/klibc/include/sys/time.h
@@ -15,8 +15,4 @@
 __extern int setitimer(int, const struct itimerval *, struct itimerval *);
 __extern int utimes(const char *, const struct timeval *);
 
-/* klibc-specific but useful since we don't have floating point */
-__extern char *strtotimeval(const char *str, struct timeval *tv);
-__extern char *strtotimespec(const char *str, struct timespec *tv);
-
 #endif /* _SYS_TIME_H */
diff --git a/klibc/include/time.h b/klibc/include/time.h
index c69c231..0f094c2 100644
--- a/klibc/include/time.h
+++ b/klibc/include/time.h
@@ -11,4 +11,8 @@
 __extern time_t time(time_t *);
 __extern int nanosleep(const struct timespec *, struct timespec *);
 
+/* klibc-specific but useful since we don't have floating point */
+__extern char *strtotimeval(const char *str, struct timeval *tv);
+__extern char *strtotimespec(const char *str, struct timespec *tv);
+
 #endif /* _TIME_H */