Changeset 06b0211b in mainline for uspace/lib/posix/source/math.c
- Timestamp:
- 2013-04-29T11:29:45Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa2b32c
- Parents:
- ba4799a (diff), df956b9b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/math.c
rba4799a r06b0211b 63 63 } 64 64 65 /** 66 * 67 * @param x 68 * @return 69 */ 70 double posix_cos(double x) 71 { 72 // TODO: Python dependency 73 not_implemented(); 74 } 75 76 /** 77 * 78 * @param x 79 * @param y 80 * @return 81 */ 82 double posix_pow(double x, double y) 83 { 84 // TODO: Python dependency 85 not_implemented(); 86 } 87 88 /** 89 * 90 * @param x 91 * @return 92 */ 93 double posix_floor(double x) 94 { 95 // TODO: Python dependency 96 not_implemented(); 97 } 98 99 /** 100 * 101 * @param x 102 * @return 103 */ 104 double posix_fabs(double x) 105 { 106 // TODO: Python dependency 107 not_implemented(); 108 } 109 110 /** 111 * 112 * @param x 113 * @param iptr 114 * @return 115 */ 116 double posix_modf(double x, double *iptr) 117 { 118 // TODO: Python dependency 119 not_implemented(); 120 } 121 122 /** 123 * 124 * @param x 125 * @param y 126 * @return 127 */ 128 double posix_fmod(double x, double y) 129 { 130 // TODO: Python dependency 131 not_implemented(); 132 } 133 134 /** 135 * 136 * @param x 137 * @return 138 */ 139 double posix_log(double x) 140 { 141 // TODO: Python dependency 142 not_implemented(); 143 } 144 145 /** 146 * 147 * @param x 148 * @param y 149 * @return 150 */ 151 double posix_atan2(double y, double x) 152 { 153 // TODO: Python dependency 154 not_implemented(); 155 } 156 157 /** 158 * 159 * @param x 160 * @return 161 */ 162 double posix_sin(double x) 163 { 164 // TODO: Python dependency 165 not_implemented(); 166 } 167 168 /** 169 * 170 * @param x 171 * @return 172 */ 173 double posix_exp(double x) 174 { 175 // TODO: Python dependency 176 not_implemented(); 177 } 178 179 /** 180 * 181 * @param x 182 * @return 183 */ 184 double posix_sqrt(double x) 185 { 186 // TODO: Python dependency 187 not_implemented(); 188 } 189 65 190 /** @} 66 191 */
Note:
See TracChangeset
for help on using the changeset viewer.