mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 06:11:37 +00:00
compile OK with gcc -ansi. Therefore, add drd.h git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14468
16 lines
468 B
C
16 lines
468 B
C
/* It's possible that people #include valgrind.h in files compiled with
|
|
* -ansi. So valgrind.h shouldn't contain any code that won't pass -ansi,
|
|
* such as C++ style "//" comments. This test ensures that. So the test is
|
|
* really that it compiles ok, rather than it runs ok. From bug report
|
|
* #103182. */
|
|
|
|
#include "valgrind.h"
|
|
#include "../../memcheck/memcheck.h"
|
|
#include "../../helgrind/helgrind.h"
|
|
#include "../../drd/drd.h"
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|