Ignore:
File:
1 edited

Legend:

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

    r63fc519 r09b0b1fb  
    3737
    3838#include "stdlib.h"
    39 #include "internal/common.h"
     39#include "common.h"
    4040
    4141/**
     
    4646 * @param compare
    4747 */
    48 void posix_qsort(void *array, size_t count, size_t size,
    49     int (*compare)(const void *, const void *))
     48void posix_qsort(void *array, size_t count, size_t size, int (*compare)(const void *, const void *))
    5049{
    5150        // TODO
     
    7776
    7877/**
    79  * Converts a string representation of a floating-point number to
    80  * its native representation. See posix_strtold().
    81  *
     78 *
    8279 * @param nptr
    8380 * @param endptr
     
    8683float posix_strtof(const char *restrict nptr, char **restrict endptr)
    8784{
    88         return (float) posix_strtold(nptr, endptr);
     85        // TODO
     86        not_implemented();
    8987}
    9088
    9189/**
    92  * Converts a string representation of a floating-point number to
    93  * its native representation. See posix_strtold().
    94  *
     90 *
    9591 * @param nptr
    9692 * @param endptr
     
    9995double posix_strtod(const char *restrict nptr, char **restrict endptr)
    10096{
    101         return (double) posix_strtold(nptr, endptr);
     97        // TODO
     98        not_implemented();
     99}
     100
     101/**
     102 *
     103 * @param nptr
     104 * @param endptr
     105 * @return
     106 */
     107long double posix_strtold(const char *restrict nptr, char **restrict endptr)
     108{
     109        // TODO
     110        not_implemented();
    102111}
    103112
Note: See TracChangeset for help on using the changeset viewer.