DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T v

⟦aff3859da⟧ TextFile

    Length: 1106 (0x452)
    Types: TextFile
    Names: »ver.c«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/rman/daemon/ver.c« 

TextFile

/*
 *  Copyright (c) 1985  Jonathan C. Broome and The Regents of the 
 *  University of California.
 *
 *  This software may be freely redistributed without licensing
 *  provided that this copyright notice remains intact and no profit
 *  is gained through any redistribution.
 *
 *  Please report any bug fixes or modifications to the author at:
 *
 *        broome@ucb-vax.berkeley.edu
 *   or:
 *        ...!ucbvax!broome
 *
 *  The author and the Regents assume no liability for any damages 
 *  or loss of revenue caused directly or indirectly by the use of 
 *  this software.
 */

#ifndef lint
static char RCSid[] = "$Header: ver.c,v 1.2 85/08/27 18:45:53 broome Exp $";
#endif

/*
 * $Log:    ver.c,v $
 * Revision 1.2  85/08/25  17:20:58  broome
 * 
 * Revision 1.1  85/08/06  11:22:54  broome
 * Initial revision
 */

#include <stdio.h>

/*
 *  Show the date this version was last recompiled.
 *  The "V ▶08◀ERSION" and "D ▶08◀ATE" stuff will be filled in
 *  by the "newver.csh" script using sed.
 */

version ()
{
    printf ("101 Version VERSION, compiled DATE\r\n");
    (void) fflush (stdout);
}