2002-06-30 05:25:07 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
2000-09-04 06:09:54 +00:00
|
|
|
|
2008-05-15 19:27:52 +00:00
|
|
|
/*
|
|
|
|
* This material, written by Henry Spencer, was released by him
|
|
|
|
* into the public domain and is thus not subject to any copyright.
|
|
|
|
*/
|
|
|
|
|
2016-11-08 05:31:01 +00:00
|
|
|
#include <capsicum_helpers.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
1993-07-26 22:22:37 +00:00
|
|
|
#include <stdio.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <stdlib.h>
|
2000-09-04 06:09:54 +00:00
|
|
|
#include <unistd.h>
|
1993-07-26 22:22:37 +00:00
|
|
|
|
2001-12-03 20:57:49 +00:00
|
|
|
int
|
2002-09-04 23:29:10 +00:00
|
|
|
main(int argc, char *argv[])
|
1993-07-26 22:22:37 +00:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int status = 0;
|
|
|
|
|
2018-06-19 23:43:14 +00:00
|
|
|
if (caph_limit_stdio() < 0 || caph_enter() < 0)
|
2016-11-08 05:31:01 +00:00
|
|
|
err(1, "capsicum");
|
|
|
|
|
1993-07-26 22:22:37 +00:00
|
|
|
optind = 2; /* Past the program name and the option letters. */
|
1997-03-29 04:34:07 +00:00
|
|
|
while ((c = getopt(argc, argv, argv[1])) != -1)
|
1993-07-26 22:22:37 +00:00
|
|
|
switch (c) {
|
|
|
|
case '?':
|
|
|
|
status = 1; /* getopt routine gave message */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (optarg != NULL)
|
1999-04-04 00:25:39 +00:00
|
|
|
printf(" -%c %s", c, optarg);
|
1993-07-26 22:22:37 +00:00
|
|
|
else
|
|
|
|
printf(" -%c", c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
printf(" --");
|
|
|
|
for (; optind < argc; optind++)
|
|
|
|
printf(" %s", argv[optind]);
|
|
|
|
printf("\n");
|
2002-04-28 14:04:24 +00:00
|
|
|
return status;
|
1993-07-26 22:22:37 +00:00
|
|
|
}
|