Changeset 192565b in mainline for uspace/lib/posix/source/math.c
- Timestamp:
- 2013-05-27T13:18:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f2c19b0
- Parents:
- d120133 (diff), c90aed4 (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
rd120133 r192565b 62 62 } 63 63 64 /** 65 * 66 * @param x 67 * @return 68 */ 69 double posix_cos(double x) 70 { 71 // TODO: Python dependency 72 not_implemented(); 73 } 74 75 /** 76 * 77 * @param x 78 * @param y 79 * @return 80 */ 81 double posix_pow(double x, double y) 82 { 83 // TODO: Python dependency 84 not_implemented(); 85 } 86 87 /** 88 * 89 * @param x 90 * @return 91 */ 92 double posix_floor(double x) 93 { 94 // TODO: Python dependency 95 not_implemented(); 96 } 97 98 /** 99 * 100 * @param x 101 * @return 102 */ 103 double posix_fabs(double x) 104 { 105 // TODO: Python dependency 106 not_implemented(); 107 } 108 109 /** 110 * 111 * @param x 112 * @param iptr 113 * @return 114 */ 115 double posix_modf(double x, double *iptr) 116 { 117 // TODO: Python dependency 118 not_implemented(); 119 } 120 121 /** 122 * 123 * @param x 124 * @param y 125 * @return 126 */ 127 double posix_fmod(double x, double y) 128 { 129 // TODO: Python dependency 130 not_implemented(); 131 } 132 133 /** 134 * 135 * @param x 136 * @return 137 */ 138 double posix_log(double x) 139 { 140 // TODO: Python dependency 141 not_implemented(); 142 } 143 144 /** 145 * 146 * @param x 147 * @param y 148 * @return 149 */ 150 double posix_atan2(double y, double x) 151 { 152 // TODO: Python dependency 153 not_implemented(); 154 } 155 156 /** 157 * 158 * @param x 159 * @return 160 */ 161 double posix_sin(double x) 162 { 163 // TODO: Python dependency 164 not_implemented(); 165 } 166 167 /** 168 * 169 * @param x 170 * @return 171 */ 172 double posix_exp(double x) 173 { 174 // TODO: Python dependency 175 not_implemented(); 176 } 177 178 /** 179 * 180 * @param x 181 * @return 182 */ 183 double posix_sqrt(double x) 184 { 185 // TODO: Python dependency 186 not_implemented(); 187 } 188 64 189 /** @} 65 190 */
Note:
See TracChangeset
for help on using the changeset viewer.