Changeset db71e2a in mainline for uspace/lib/posix/source/math.c


Ignore:
Timestamp:
2013-07-24T17:42:25Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69b264a9
Parents:
52f1882 (diff), cffa14e6 (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.
Message:

merge mainline changes.

usb hc macro changes from mainline were reverted, too many conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/math.c

    r52f1882 rdb71e2a  
    3434
    3535#define LIBPOSIX_INTERNAL
     36#define __POSIX_DEF__(x) posix_##x
    3637
    3738#include "internal/common.h"
     
    6263}
    6364
     65/**
     66 *
     67 * @param x
     68 * @return
     69 */
     70double 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 */
     82double posix_pow(double x, double y)
     83{
     84        // TODO: Python dependency
     85        not_implemented();
     86}
     87
     88/**
     89 *
     90 * @param x
     91 * @return
     92 */
     93double posix_floor(double x)
     94{
     95        // TODO: Python dependency
     96        not_implemented();
     97}
     98
     99/**
     100 *
     101 * @param x
     102 * @return
     103 */
     104double 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 */
     116double 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 */
     128double posix_fmod(double x, double y)
     129{
     130        // TODO: Python dependency
     131        not_implemented();
     132}
     133
     134/**
     135 *
     136 * @param x
     137 * @return
     138 */
     139double 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 */
     151double posix_atan2(double y, double x)
     152{
     153        // TODO: Python dependency
     154        not_implemented();
     155}
     156
     157/**
     158 *
     159 * @param x
     160 * @return
     161 */
     162double posix_sin(double x)
     163{
     164        // TODO: Python dependency
     165        not_implemented();
     166}
     167
     168/**
     169 *
     170 * @param x
     171 * @return
     172 */
     173double posix_exp(double x)
     174{
     175        // TODO: Python dependency
     176        not_implemented();
     177}
     178
     179/**
     180 *
     181 * @param x
     182 * @return
     183 */
     184double posix_sqrt(double x)
     185{
     186        // TODO: Python dependency
     187        not_implemented();
     188}
     189
    64190/** @}
    65191 */
Note: See TracChangeset for help on using the changeset viewer.