Copyright for skeleton updated.

This commit is contained in:
Serge Vakulenko
2014-05-05 11:29:53 -07:00
parent ed92365a4c
commit 19cf54c0c1

View File

@@ -1,23 +1,32 @@
/*
* Sample program.
*
* Copyright (C) 1993-2004 Serge Vakulenko, <vak@cronyx.ru>
* Copyright (C) 1993-2014 Serge Vakulenko, <vak@cronyx.ru>
*
* This file is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
* Permission to use, copy, modify, and distribute this software
* and its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that the copyright notice and this
* permission notice and warranty disclaimer appear in supporting
* documentation, and that the name of the author not be used in
* advertising or publicity pertaining to distribution of the
* software without specific, written prior permission.
*
* You can redistribute this file and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software Foundation;
* either version 2 of the License, or (at your discretion) any later version.
* See the accompanying file "COPYING.txt" for more details.
* The author disclaim all warranties with regard to this
* software, including all implied warranties of merchantability
* and fitness. In no event shall the author be liable for any
* special, indirect or consequential damages or any damages
* whatsoever resulting from loss of use, data or profits, whether
* in an action of contract, negligence or other tortious action,
* arising out of or in connection with the use or performance of
* this software.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
const char version[] = "1.0";
const char copyright[] = "Copyright (C) 1993 Serge Vakulenko";
const char copyright[] = "Copyright (C) 1993-2014 Serge Vakulenko";
char *progname;
int verbose;
@@ -78,6 +87,5 @@ int main (int argc, char **argv)
printf ("%s ", argv[i]);
printf ("\n");
}
return (0);
}