Ignore:
File:
1 edited

Legend:

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

    r087c8798 r3acff69  
    3131 * @{
    3232 */
    33 /** @file Standard library definitions.
     33/** @file
    3434 */
    3535
     
    5656extern long long posix_llabs(long long i);
    5757
    58 /* Integer Division */
     58/* Integer division */
    5959
    6060typedef struct {
     
    8080    size_t nmemb, size_t size, int (*compar)(const void *, const void *));
    8181
     82
    8283/* Environment Access */
    8384extern char *posix_getenv(const char *name);
    8485extern int posix_putenv(char *string);
     86
    8587extern int posix_system(const char *string);
     88
    8689
    8790/* Symbolic Links */
     
    98101extern long int posix_atol(const char *nptr);
    99102extern long long int posix_atoll(const char *nptr);
     103
    100104extern long int posix_strtol(const char *restrict nptr,
    101105    char **restrict endptr, int base);
     
    106110extern unsigned long long int posix_strtoull(
    107111    const char *restrict nptr, char **restrict endptr, int base);
     112
    108113
    109114/* Memory Allocation */
Note: See TracChangeset for help on using the changeset viewer.