Index: uspace/lib/posix/src/stdlib/strtold.c
===================================================================
--- uspace/lib/posix/src/stdlib/strtold.c	(revision df2e5514fa8f0044ee3ce752a6fd5cf72425718e)
+++ uspace/lib/posix/src/stdlib/strtold.c	(revision 03cfe2ecc28d0202a182c7ed94187de9c53958f1)
@@ -32,7 +32,4 @@
 /** @file Backend for floating point conversions.
  */
-
-#define LIBPOSIX_INTERNAL
-#define __POSIX_DEF__(x) posix_##x
 
 #include "../internal/common.h"
@@ -407,5 +404,5 @@
  * @return An approximate representation of the input floating-point number.
  */
-long double posix_strtold(const char *restrict nptr, char **restrict endptr)
+long double strtold(const char *restrict nptr, char **restrict endptr)
 {
 	assert(nptr != NULL);
@@ -433,5 +430,5 @@
 	
 	/* check for NaN */
-	if (posix_strncasecmp(&nptr[i], "nan", 3) == 0) {
+	if (strncasecmp(&nptr[i], "nan", 3) == 0) {
 		// FIXME: return NaN
 		// TODO: handle the parenthesised case
@@ -445,7 +442,7 @@
 	
 	/* check for Infinity */
-	if (posix_strncasecmp(&nptr[i], "inf", 3) == 0) {
+	if (strncasecmp(&nptr[i], "inf", 3) == 0) {
 		i += 3;
-		if (posix_strncasecmp(&nptr[i], "inity", 5) == 0) {
+		if (strncasecmp(&nptr[i], "inity", 5) == 0) {
 			i += 5;
 		}
