diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1997-10-21 01:56:05 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1997-10-21 01:56:05 +0000 |
| commit | 14d01796b1ab61a57dbd60da66d8dac699a0a2e7 (patch) | |
| tree | 9444b2a63ad5396b894abd07c85ff08c9c031d26 /eBones/lib/libkrb/stime.c | |
| parent | 58fda9eaaeb697cef01d825dfe2b6f045659c15c (diff) | |
Diffstat (limited to 'eBones/lib/libkrb/stime.c')
| -rw-r--r-- | eBones/lib/libkrb/stime.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/eBones/lib/libkrb/stime.c b/eBones/lib/libkrb/stime.c deleted file mode 100644 index 2da246319eb7..000000000000 --- a/eBones/lib/libkrb/stime.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright 1985, 1986, 1987, 1988 by the Massachusetts Institute - * of Technology. - * For copying and distribution information, please see the file - * <Copyright.MIT>. - * - * from: stime.c,v 4.5 88/11/15 16:58:05 jtkohl Exp $ - * $Id: stime.c,v 1.3 1995/07/18 16:39:46 mark Exp $ - */ - -#if 0 -#ifndef lint -static char *rcsid = -"$Id: stime.c,v 1.3 1995/07/18 16:39:46 mark Exp $"; -#endif /* lint */ -#endif - -#include <sys/time.h> -#include <stdio.h> /* for sprintf() */ - -/* - * Given a pointer to a long containing the number of seconds - * since the beginning of time (midnight 1 Jan 1970 GMT), return - * a string containing the local time in the form: - * - * "25-Jan-88 10:17:56" - */ - -char * -stime(t) - long *t; -{ - static char st_data[40]; - static char *st = st_data; - struct tm *tm; - char *month_sname(); - - tm = localtime(t); - (void) sprintf(st,"%2d-%s-%02d %02d:%02d:%02d",tm->tm_mday, - month_sname(tm->tm_mon + 1),tm->tm_year, - tm->tm_hour, tm->tm_min, tm->tm_sec); - return st; -} |
