Index: uspace/lib/c/generic/time.c
===================================================================
--- uspace/lib/c/generic/time.c	(revision 077dad209163d377ede79b812138bac6e8d802ee)
+++ uspace/lib/c/generic/time.c	(revision 2e6293bcbe4e0a98e83e1721f52fb0b74611caed)
@@ -849,5 +849,5 @@
  * @return        EOK or a negative error code
  */
-int utctime2tm(const time_t time, struct tm *restrict result)
+int time_utc2tm(const time_t time, struct tm *restrict result)
 {
 	assert(result != NULL);
@@ -876,13 +876,13 @@
  * @return       EOK or a negative error code.
  */
-int utctime2str(const time_t time, char *restrict buf)
+int time_utc2str(const time_t time, char *restrict buf)
 {
 	struct tm t;
 	int r;
 
-	if ((r = utctime2tm(time, &t)) != EOK)
+	if ((r = time_utc2tm(time, &t)) != EOK)
 		return r;
 
-	tm2str(&t, buf);
+	time_tm2str(&t, buf);
 	return EOK;
 }
@@ -897,5 +897,5 @@
  *                bytes long.
  */
-void tm2str(const struct tm *restrict timeptr, char *restrict buf)
+void time_tm2str(const struct tm *restrict timeptr, char *restrict buf)
 {
 	assert(timeptr != NULL);
@@ -927,5 +927,5 @@
  * @return          EOK on success or a negative error code.
  */
-int localtime2tm(const time_t time, struct tm *restrict result)
+int time_local2tm(const time_t time, struct tm *restrict result)
 {
 	// TODO: deal with timezone
@@ -957,13 +957,13 @@
  * @return       EOK on success or a negative error code.
  */
-int localtime2str(const time_t time, char *buf)
+int time_local2str(const time_t time, char *buf)
 {
 	struct tm loctime;
 	int r;
 
-	if ((r = localtime2tm(time, &loctime)) != EOK)
+	if ((r = time_local2tm(time, &loctime)) != EOK)
 		return r;
 
-	tm2str(&loctime, buf);
+	time_tm2str(&loctime, buf);
 
 	return EOK;
Index: uspace/lib/c/include/sys/time.h
===================================================================
--- uspace/lib/c/include/sys/time.h	(revision 077dad209163d377ede79b812138bac6e8d802ee)
+++ uspace/lib/c/include/sys/time.h	(revision 2e6293bcbe4e0a98e83e1721f52fb0b74611caed)
@@ -81,9 +81,9 @@
 
 extern time_t mktime(struct tm *tm);
-extern int utctime2tm(const time_t time, struct tm *result);
-extern int utctime2str(const time_t time, char *buf);
-extern void tm2str(const struct tm *timeptr, char *buf);
-extern int localtime2tm(const time_t time, struct tm *result);
-extern int localtime2str(const time_t time, char *buf);
+extern int time_utc2tm(const time_t time, struct tm *result);
+extern int time_utc2str(const time_t time, char *buf);
+extern void time_tm2str(const struct tm *timeptr, char *buf);
+extern int time_local2tm(const time_t time, struct tm *result);
+extern int time_local2str(const time_t time, char *buf);
 extern double difftime(time_t time1, time_t time0);
 extern size_t strftime(char *restrict s, size_t maxsize,
Index: uspace/lib/posix/time.c
===================================================================
--- uspace/lib/posix/time.c	(revision 077dad209163d377ede79b812138bac6e8d802ee)
+++ uspace/lib/posix/time.c	(revision 2e6293bcbe4e0a98e83e1721f52fb0b74611caed)
@@ -87,5 +87,5 @@
     struct tm *restrict result)
 {
-	int rc = utctime2tm(*timer, result);
+	int rc = time_utc2tm(*timer, result);
 	if (rc != EOK) {
 		errno = rc;
@@ -153,5 +153,5 @@
     char *restrict buf)
 {
-	tm2str(timeptr, buf);
+	time_tm2str(timeptr, buf);
 	return buf;
 }
@@ -184,5 +184,5 @@
 char *posix_ctime_r(const time_t *timer, char *buf)
 {
-	int r = localtime2str(*timer, buf);
+	int r = time_local2str(*timer, buf);
 	if (r != EOK) {
 		errno = r;
