cppcheck/addons/test/y2038/y2038-test-5-good-no-time-u...

15 lines
216 B
C

/*
* C file that does not use any time functionality -> no errors should
* be reported.
*/
#include <stdio.h>
int main(int argc, char **argv)
{
if (argc > 1) {
printf("Hello");
}
return 0;
}