aboutsummaryrefslogtreecommitdiff
path: root/depends/libcap/libcap/psx_exec.c
blob: 5e7a88f0202a0005c55f2162b85ff87035f5405a (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 && argv[0] != 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);
}