Changeset e4f8c77 in mainline for uspace/lib/posix/math.c


Ignore:
Timestamp:
2011-07-13T22:39:18Z (13 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e6910c8
Parents:
5974661 (diff), 8ecef91 (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 libposix.

File:
1 moved

Legend:

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

    r5974661 re4f8c77  
    3636
    3737#include "internal/common.h"
    38 #include "getopt.h"
     38#include "math.h"
    3939
    4040/**
    4141 *
    42  * @param argc
    43  * @param argv
    44  * @param optstring
    45  * @param longopts
    46  * @param longindex
     42 * @param x
     43 * @param exp
    4744 * @return
    4845 */
    49 int posix_getopt_long(int argc, char * const argv[],
    50     const char *optstring, const struct posix_option *longopts, int *longindex)
     46double posix_ldexp(double x, int exp)
    5147{
    52         // TODO
     48        // TODO: low priority, just a compile-time dependency of binutils
    5349        not_implemented();
    5450}
     
    5652/**
    5753 *
    58  * @param argc
    59  * @param argv
    60  * @param optstring
    61  * @param longopts
    62  * @param longindex
     54 * @param num
     55 * @param exp
    6356 * @return
    6457 */
    65 int posix_getopt_long_only(int argc, char * const argv[],
    66     const char *optstring, const struct posix_option *longopts, int *longindex)
     58double posix_frexp(double num, int *exp)
    6759{
    68         // TODO
     60        // TODO: low priority, just a compile-time dependency of binutils
    6961        not_implemented();
    7062}
Note: See TracChangeset for help on using the changeset viewer.