removed $Id$, not relevant in git

This commit is contained in:
David Lindes 2011-02-06 15:28:01 -08:00
parent 0dfc80c502
commit 7dcee4c59d
2 changed files with 6 additions and 9 deletions

View File

@ -3,10 +3,11 @@
*
* tty equivalent to xload
*
* Copyright 1996 by David Lindes
* all right reserved.
* Copyright 1996-2011 by David Lindes
* All rights reserved.
*
* Version information: $Id: ttyload.c,v 1.25 2008-09-17 02:30:45 lindes Exp $
* Version information... stored in git now. Hopefully you're looking
* at this file from a git repo, and don't care. :)
*
*/
@ -33,8 +34,6 @@
#define MINROWS (HEIGHTPAD + 6)
#define MINCOLS (WIDTHPAD + 6)
char *c="$Id: ttyload.c,v 1.25 2008-09-17 02:30:45 lindes Exp $";
char strbuf[BUFSIZ],
*optstring = "i:hvmr:c:",
*usage =

View File

@ -3,13 +3,11 @@
*
* support file for ttyload.c
*
* Copyright 1996 David Lindes,
* all rights reserved.
* Copyright 1996-2011 David Lindes.
* All rights reserved.
*
*/
#define TTYLOAD_H_IDENT "$Id: ttyload.h,v 1.6 2001-08-28 01:00:31 lindes Exp $";
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))