You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* TODO file description
|
|
*/
|
|
|
|
#ifndef ZAVLAHA_RV_TRY_H
|
|
#define ZAVLAHA_RV_TRY_H
|
|
|
|
#define TRY(what) do { \
|
|
rv = (what); \
|
|
if (rv < 0) { return rv; } \
|
|
} while (0)
|
|
|
|
#endif //ZAVLAHA_RV_TRY_H
|
|
|