Changeset 9af1c61 in mainline for uspace/lib/c/include/str_error.h


Ignore:
Timestamp:
2017-12-05T14:52:22Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
addbce4
Parents:
82d515e9
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-05 14:50:38)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-05 14:52:22)
Message:

Print errno values as string, rather than just numbers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/str_error.h

    r82d515e9 r9af1c61  
    3636#define LIBC_STRERROR_H_
    3737
    38 const char *str_error(const int);
     38#include <errno.h>
     39
     40const char *str_error(errno_t);
     41const char *str_error_name(errno_t);
    3942
    4043#endif
Note: See TracChangeset for help on using the changeset viewer.