1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-08 00:16:11 +00:00
2015-12-13 22:34:58 +09:00

12 lines
272 B
C

/* Test for verifying that unsupported annotations are reported properly. */
#include <stdio.h>
#include "../../helgrind/helgrind.h"
int main(int argc, char** argv)
{
ANNOTATE_PUBLISH_MEMORY_RANGE(argv[0], sizeof(argv[0]));
fprintf(stderr, "Done.\n");
return 0;
}