a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/oswin9x.c src/lib/oswin9x.c
index 1fb43ab..5087f5a 100644
--- src/lib/oswin9x.c
+++ src/lib/oswin9x.c
@@ -1,25 +1,24 @@
 /* Stuff that's specific for Win95 goes here. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 #include "common.h"
 #include <io.h>
 #include <direct.h>
 #include "portable.h"
 
-static char const rcsid[] = "$Id: oswin9x.c,v 1.9 2008/06/27 18:46:53 markd Exp $";
 
 /* Return how long the named file is in bytes. 
  * Return -1 if no such file. */
 off_t fileSize(char *fileName)
 {
 int fd;
 long size;
 fd = _open(fileName, _O_RDONLY, 0);
 if (fd < 0)
     return -1;
 size = _lseek(fd, 0L, SEEK_END);
 _close(fd);
 return size;
 }