11 lines
124 B
C++
11 lines
124 B
C++
|
#include "unity.h"
|
||
|
|
||
|
#ifndef DETECT_UNITY
|
||
|
# error "Should have detected a unity build"
|
||
|
#endif
|
||
|
|
||
|
int unity2()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|