summaryrefslogtreecommitdiffstats
path: root/warp/version.c
blob: 4315fee581afbb0fc9b04b10dd281ee2fd5257a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Header: version.c,v 7.0 86/10/08 15:14:39 lwall Exp
 *
 * Log:	version.c,v
 * Revision 7.0  86/10/08  15:14:39  lwall
 * Split into separate files.  Added amoebas and pirates.
 *
 */

#include "patchlevel.h"
#include "INTERN.h"
#include "version.h"

#include <stdio.h>

/* Print out the version number. */

void
version(void)
{
    extern char rcsid[];

    printf("%s\r\nPatch level: %d\r\n", rcsid, PATCHLEVEL);
}