cert-limited-randomness.c 246 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 // RUN: %check_clang_tidy %s cert-msc30-c %t extern int rand(void); int nonrand(); int cTest() { int i = rand(); // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: rand() has limited randomness [cert-msc30-c] int k = nonrand(); return 0; }