Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
Examining data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c
Examining data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.h

FINAL RESULTS:

data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.h:94:56:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
								 const char* fmt, ...) __attribute__ ((format (printf, 5, 6)));
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:336:2:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
	usleep(20);
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:344:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep(20);
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:619:4:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
			usleep(1000);
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:1808:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep(1000);
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:1842:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep(1000);
data/liblms7compact-0.0.1+git20190125.bfd5418/liblms7002m.c:1898:3:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
		usleep(10000);

ANALYSIS SUMMARY:

Hits = 7
Lines analyzed = 2196 in approximately 0.07 seconds (32872 lines/second)
Physical Source Lines of Code (SLOC) = 1740
Hits@level = [0]   0 [1]   6 [2]   0 [3]   0 [4]   1 [5]   0
Hits@level+ = [0+]   7 [1+]   7 [2+]   1 [3+]   1 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 4.02299 [1+] 4.02299 [2+] 0.574713 [3+] 0.574713 [4+] 0.574713 [5+]   0
Dot directories skipped = 1 (--followdotdir overrides)
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.