aboutsummaryrefslogtreecommitdiff
path: root/libcap/execable.c
blob: be189140faa558d6b37f61ef6cb6171fa5bcbdba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include "execable.h"

SO_MAIN(int argc, char **argv)
{
    const char *cmd = "This library";
    if (argv != NULL) {
	cmd = argv[0];
    }
    printf("%s is the shared library version: " LIBRARY_VERSION ".\n"
	   "See the License file for distribution information.\n"
	   "More information on this library is available from:\n"
	   "\n"
	   "    https://sites.google.com/site/fullycapable/\n", cmd);
}