Changes in uspace/lib/posix/source/math.c [c8830a2:fdf97f6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/math.c
rc8830a2 rfdf97f6 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "internal/common.h" … … 62 63 } 63 64 64 /**65 *66 * @param x67 * @return68 */69 double posix_cos(double x)70 {71 // TODO: Python dependency72 not_implemented();73 }74 75 /**76 *77 * @param x78 * @param y79 * @return80 */81 double posix_pow(double x, double y)82 {83 // TODO: Python dependency84 not_implemented();85 }86 87 /**88 *89 * @param x90 * @return91 */92 double posix_floor(double x)93 {94 // TODO: Python dependency95 not_implemented();96 }97 98 /**99 *100 * @param x101 * @return102 */103 double posix_fabs(double x)104 {105 // TODO: Python dependency106 not_implemented();107 }108 109 /**110 *111 * @param x112 * @param iptr113 * @return114 */115 double posix_modf(double x, double *iptr)116 {117 // TODO: Python dependency118 not_implemented();119 }120 121 /**122 *123 * @param x124 * @param y125 * @return126 */127 double posix_fmod(double x, double y)128 {129 // TODO: Python dependency130 not_implemented();131 }132 133 /**134 *135 * @param x136 * @return137 */138 double posix_log(double x)139 {140 // TODO: Python dependency141 not_implemented();142 }143 144 /**145 *146 * @param x147 * @param y148 * @return149 */150 double posix_atan2(double y, double x)151 {152 // TODO: Python dependency153 not_implemented();154 }155 156 /**157 *158 * @param x159 * @return160 */161 double posix_sin(double x)162 {163 // TODO: Python dependency164 not_implemented();165 }166 167 /**168 *169 * @param x170 * @return171 */172 double posix_exp(double x)173 {174 // TODO: Python dependency175 not_implemented();176 }177 178 /**179 *180 * @param x181 * @return182 */183 double posix_sqrt(double x)184 {185 // TODO: Python dependency186 not_implemented();187 }188 189 65 /** @} 190 66 */
Note:
See TracChangeset
for help on using the changeset viewer.