blob: 52ae275b74c4f3e6de4441ffba233f17bc58b5cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
* SCCS: @(#)getopt.c 1.3 (97/07/21)
*
* Copyright 1990, 1991, 1992 by the Massachusetts Institute of Technology and
* UniSoft Group Limited.
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation, and that the names of MIT and UniSoft not be
* used in advertising or publicity pertaining to distribution of the
* software without specific, written prior permission. MIT and UniSoft
* make no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* $XConsortium: getopt.c,v 1.2 92/07/01 11:59:04 rws Exp $
*/
/************************************************************************
SCCS: @(#)getopt.c 1.3 97/07/21 TETware release 3.3
NAME: getopt.c
PRODUCT: TETware
AUTHOR: this file lifted from the ETET contrib/port directory
DATE CREATED: September 1996
DESCRIPTION:
getopt() function for WIN32 platforms
MODIFICATIONS:
Aaron Plattner, April 2010
Fixed warnings when compiled with GCC's -Wall option.
************************************************************************/
int tet_getopt_c_not_used;
|