home *** CD-ROM | disk | FTP | other *** search
- /*
- * version.c
- *
- * Copyright (C) 1989, Craig E. Kolb
- *
- * This software may be freely copied, modified, and redistributed,
- * provided that this copyright notice is preserved on all copies.
- *
- * There is no warranty or other guarantee of fitness for this software,
- * it is provided solely . Bug reports or fixes may be sent
- * to the author, who may or may not act on them as he desires.
- *
- * You may not include this software in a program or other software product
- * without supplying the source, or without informing the end-user that the
- * source is available for no extra charge.
- *
- * If you modify this software, you should include a notice giving the
- * name of the person performing the modification, the date of modification,
- * and the reason for such modification.
- *
- * $Id: version.c,v 3.0 89/10/27 02:06:08 craig Exp $
- *
- * $Log: version.c,v $
- * Revision 3.0 89/10/27 02:06:08 craig
- * Baseline for first official release.
- *
- */
- #include <stdio.h>
- #include "patchlevel.h"
-
- print_version()
- {
- extern char rcsid[];
- extern FILE *fstats;
-
- fprintf(fstats,"rayshade: %s\nPatch level %d\n",rcsid, PATCHLEVEL);
- }
-