Skip to content
Snippets Groups Projects
Commit d1a424c0 authored by Nagy Tibor's avatar Nagy Tibor
Browse files

tests: Replace returns with exits in the main functions

This will allow us to redefine the exit function.

For example:
```
#define exit(code) { \
    fprintf(stderr, "%s:%d: exit(%s) in function ‘%s’\n",
        __FILE__, __LINE__, #code, __func__); \
    _exit(code); \
}
```
parent f19e0294
No related branches found
No related tags found
No related merge requests found
Showing with 39 additions and 39 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment