Ignore:
File:
1 edited

Legend:

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

    r63fc519 r4f4b4e7  
    3737
    3838#include "stdlib.h"
    39 #include "internal/common.h"
     39#include "common.h"
    4040
    4141/**
     
    7777
    7878/**
    79  * Converts a string representation of a floating-point number to
    80  * its native representation. See posix_strtold().
    81  *
     79 *
    8280 * @param nptr
    8381 * @param endptr
     
    8684float posix_strtof(const char *restrict nptr, char **restrict endptr)
    8785{
    88         return (float) posix_strtold(nptr, endptr);
     86        // TODO
     87        not_implemented();
    8988}
    9089
    9190/**
    92  * Converts a string representation of a floating-point number to
    93  * its native representation. See posix_strtold().
    94  *
     91 *
    9592 * @param nptr
    9693 * @param endptr
     
    9996double posix_strtod(const char *restrict nptr, char **restrict endptr)
    10097{
    101         return (double) posix_strtold(nptr, endptr);
     98        // TODO
     99        not_implemented();
     100}
     101
     102/**
     103 *
     104 * @param nptr
     105 * @param endptr
     106 * @return
     107 */
     108long double posix_strtold(const char *restrict nptr, char **restrict endptr)
     109{
     110        // TODO
     111        not_implemented();
    102112}
    103113
Note: See TracChangeset for help on using the changeset viewer.