/*
 * Main/getopt(3) fragment.
 *
 *	from: @(#)getopt	5.3 (Berkeley) 3/28/94
 *	$Id: getopt,v 1.3 1994/03/29 02:05:36 cgd Exp $
 */

#include <sys/types.h>

#include <stdlib.h>

void usage __P((void));

int
main(argc, argv)
	int argc;
	char *argv[];
{
	int ch;

	while ((ch = getopt(argc, argv, "")) != EOF)
		switch (ch) {
		case '':
			break;
		case '?':
		default:
			usage();
		}
	argc -= optind;
	argv += optind;
}

void
usage()
{
	(void)fprintf(stderr, "usage: program [-abc] [-f file]\n");
	exit(1);
}
