Changes in uspace/lib/posix/stdlib.c [09b0b1fb:4d10fc8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.c
r09b0b1fb r4d10fc8 1 1 /* 2 2 * Copyright (c) 2011 Petr Koupy 3 * Copyright (c) 2011 Jiri Zarevucky4 3 * All rights reserved. 5 4 * … … 37 36 38 37 #include "stdlib.h" 39 #include "common.h"40 38 41 39 /** … … 49 47 { 50 48 // TODO 51 not_implemented();52 49 } 53 50 … … 60 57 { 61 58 // TODO 62 not_implemented();59 return 0; 63 60 } 64 61 … … 72 69 { 73 70 // TODO 74 not_implemented(); 75 } 76 77 /** 78 * 79 * @param nptr 80 * @param endptr 81 * @return 82 */ 83 float posix_strtof(const char *restrict nptr, char **restrict endptr) 84 { 85 // TODO 86 not_implemented(); 87 } 88 89 /** 90 * 91 * @param nptr 92 * @param endptr 93 * @return 94 */ 95 double posix_strtod(const char *restrict nptr, char **restrict endptr) 96 { 97 // TODO 98 not_implemented(); 99 } 100 101 /** 102 * 103 * @param nptr 104 * @param endptr 105 * @return 106 */ 107 long double posix_strtold(const char *restrict nptr, char **restrict endptr) 108 { 109 // TODO 110 not_implemented(); 111 } 112 113 /** 114 * 115 * @param str 116 * @return 117 */ 118 int posix_atoi(const char *str) 119 { 120 // TODO 121 not_implemented(); 71 return 0; 122 72 } 123 73
Note:
See TracChangeset
for help on using the changeset viewer.