1 /*
2  * Public domain
3  * certhash dummy implementation for platforms without symlinks
4  */
5 
6 #include "apps.h"
7 
8 int
certhash_main(int argc,char ** argv)9 certhash_main(int argc, char **argv)
10 {
11 	fprintf(stderr, "certhash is not enabled on this platform\n");
12 	return (1);
13 }
14