Changes in uspace/lib/posix/stdlib.h [087c8798:3acff69] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.h
r087c8798 r3acff69 31 31 * @{ 32 32 */ 33 /** @file Standard library definitions.33 /** @file 34 34 */ 35 35 … … 56 56 extern long long posix_llabs(long long i); 57 57 58 /* Integer Division */58 /* Integer division */ 59 59 60 60 typedef struct { … … 80 80 size_t nmemb, size_t size, int (*compar)(const void *, const void *)); 81 81 82 82 83 /* Environment Access */ 83 84 extern char *posix_getenv(const char *name); 84 85 extern int posix_putenv(char *string); 86 85 87 extern int posix_system(const char *string); 88 86 89 87 90 /* Symbolic Links */ … … 98 101 extern long int posix_atol(const char *nptr); 99 102 extern long long int posix_atoll(const char *nptr); 103 100 104 extern long int posix_strtol(const char *restrict nptr, 101 105 char **restrict endptr, int base); … … 106 110 extern unsigned long long int posix_strtoull( 107 111 const char *restrict nptr, char **restrict endptr, int base); 112 108 113 109 114 /* Memory Allocation */
Note:
See TracChangeset
for help on using the changeset viewer.