diff options
Diffstat (limited to 'Tests/ObjectLibrary/A')
-rw-r--r-- | Tests/ObjectLibrary/A/a.h | 4 | ||||
-rw-r--r-- | Tests/ObjectLibrary/A/a2.c | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Tests/ObjectLibrary/A/a.h b/Tests/ObjectLibrary/A/a.h index 7259f98..b1fd42f 100644 --- a/Tests/ObjectLibrary/A/a.h +++ b/Tests/ObjectLibrary/A/a.h @@ -1,6 +1,6 @@ #ifndef A_DEF -# error "A_DEF not defined" +#error "A_DEF not defined" #endif #ifdef B_DEF -# error "B_DEF must not be defined" +#error "B_DEF must not be defined" #endif diff --git a/Tests/ObjectLibrary/A/a2.c b/Tests/ObjectLibrary/A/a2.c index d8f225e..fbb0c02 100644 --- a/Tests/ObjectLibrary/A/a2.c +++ b/Tests/ObjectLibrary/A/a2.c @@ -1,2 +1,5 @@ #include "a.h" -int a2(void) { return 0; } +int a2(void) +{ + return 0; +} |