Cisco Cisco StadiumVision Director Informazioni sulle licenze

Pagina di 2629
 
  BECAUSE GHOSTSCRIPT IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY 
NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT 
WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC, RICHARD 
M. STALLMAN, ALADDIN ENTERPRISES, L. PETER DEUTSCH, AND/OR OTHER PARTIES 
PROVIDE GHOSTSCRIPT "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER 
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE 
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF GHOSTSCRIPT IS WITH 
YOU.  SHOULD GHOSTSCRIPT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL 
NECESSARY SERVICING, REPAIR OR CORRECTION. 
 
  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M. 
STALLMAN, THE FREE SOFTWARE FOUNDATION, INC., L. PETER DEUTSCH, ALADDIN 
ENTERPRISES, AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE 
GHOSTSCRIPT AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING 
ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR 
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE 
(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED 
INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE 
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GHOSTSCRIPT, EVEN IF YOU 
HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM 
BY ANY OTHER PARTY. 
 
-------------------- End of file COPYLEFT ------------------------------ 
*/ 
 
/* 
 * Usage: 
 
ansi2knr input_file [output_file] 
 * If no output_file is supplied, output goes to stdout. 
 * There are no error messages. 
 * 
 * ansi2knr recognizes function definitions by seeing a non-keyword 
 * identifier at the left margin, followed by a left parenthesis, 
 * with a right parenthesis as the last character on the line, 
 * and with a left brace as the first token on the following line 
 * (ignoring possible intervening comments). 
 * It will recognize a multi-line header provided that no intervening 
 * line ends with a left or right brace or a semicolon. 
 * These algorithms ignore whitespace and comments, except that 
 * the function name must be the first thing on the line. 
 * The following constructs will confuse it: 
 * 
- Any other construct that starts at the left margin and 
 * 
    follows the above syntax (such as a macro or function call). 
 * 
- Some macros that tinker with the syntax of the function header. 
 */ 
 
 
# install - install a program, script, or datafile 
# This comes from X11R5 (mit/util/scripts/install.sh). 

# Copyright 1991 by the Massachusetts Institute of Technology 

# Permission to use, copy, modify, distribute, and sell this software and its 
# documentation for any purpose is hereby granted without fee, provided that