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

⟦38352a74a⟧ TextFile

    Length: 427 (0x1ab)
    Types: TextFile
    Names: »ctime.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec3/localtime/ctime.c« 

TextFile

#

/*LINTLIBRARY*/

#ifndef lint
#ifndef NOID
static char	sccsid[] = "@(#)ctime.c	3.1";
#endif /* !NOID */
#endif /* !lint */

#ifndef BSD_COMPAT

/*
** On non-BSD systems, this can be a separate function (as is proper).
*/

#include "sys/types.h"
#include "time.h"

extern char *		asctime();
extern struct tm *	localtime();

char *
ctime(timep)
time_t *	timep;
{
	return asctime(localtime(timep));
}

#endif /* !BSD_COMPAT */