Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1 |
pmbaty |
1 |
#ifndef HARNESS_COMPILER_H |
|
|
2 |
#define HARNESS_COMPILER_H |
|
|
3 |
|
|
|
4 |
#if defined(_MSC_VER) |
|
|
5 |
#define HARNESS_NORETURN __declspec(noreturn) |
|
|
6 |
#else |
|
|
7 |
#define HARNESS_NORETURN __attribute__((noreturn)) |
|
|
8 |
#endif |
|
|
9 |
|
|
|
10 |
#endif |