/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
#include <ast.h>
#if _lib_getopt
#else
#include <error.h>
#include <option.h>
int opterr = 1;
int optind = 1;
int optopt = 0;
char* optarg = 0;
static int lastoptind;
extern int
{
int n;
return -1;
{
case ':':
n = '?';
/*FALLTHROUGH*/
case '?':
{
if (!error_info.id)
}
break;
case 0:
n = -1;
break;
}
return n;
}
#endif