mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-30 07:30:54 +00:00
11 lines
301 B
C
11 lines
301 B
C
#include <stdio.h>
|
|
#include "../libclamav/clamav.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
UNUSEDPARAM(argc);
|
|
UNUSEDPARAM(argv);
|
|
puts("\n*** Unit tests disabled in this build\n*** Use ./configure --enable-check to enable them\n");
|
|
/* tell automake the test was skipped */
|
|
return 77;
|
|
}
|