Index: uspace/lib/posix/time.c
===================================================================
--- uspace/lib/posix/time.c	(revision f7ea54007c430389f32534f3b3ec662f2dad8fe7)
+++ uspace/lib/posix/time.c	(revision 664fc031aeab3e7320e3d3c35adb99a7ab5b1306)
@@ -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;
