blob: 3d08032530a763ab0d1b6a5c429c1ee68f47fbf5 [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
int main(int argc, char **argv)
{
printf ("Is argc (%d) < 3 ?\n", argc);
assert (argc < 3);
printf ("No assert !\n");
return 0;
}