Changes in uspace/lib/posix/internal/common.h [75406dc:4cf8ca6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/internal/common.h
r75406dc r4cf8ca6 43 43 __func__, __FILE__, __LINE__), abort()) 44 44 45 /* A little helper macro to avoid typing this over and over. */46 #define errnify(func, ...) ({ \47 int rc = func(__VA_ARGS__); \48 if (rc < 0) { \49 errno = -rc; \50 rc = -1; \51 } \52 rc; \53 })54 55 45 #endif /* LIBPOSIX_COMMON_H_ */ 56 46
Note:
See TracChangeset
for help on using the changeset viewer.