Index: uspace/lib/posix/source/math.c
===================================================================
--- uspace/lib/posix/source/math.c	(revision 3e6a98c595287c43d200d28d97f57755342be117)
+++ uspace/lib/posix/source/math.c	(revision ea15a89ad4ebd576ab3620748f7af9e29f5809c0)
@@ -62,4 +62,129 @@
 }
 
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_cos(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @param y
+ * @return
+ */
+double posix_pow(double x, double y)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_floor(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_fabs(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @param iptr
+ * @return
+ */
+double posix_modf(double x, double *iptr)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @param y
+ * @return
+ */
+double posix_fmod(double x, double y)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_log(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @param y
+ * @return
+ */
+double posix_atan2(double y, double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_sin(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_exp(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
+/**
+ * 
+ * @param x
+ * @return
+ */
+double posix_sqrt(double x)
+{
+	// TODO: Python dependency
+	not_implemented();
+}
+
 /** @}
  */
