1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-04 07:33:07 +00:00

Remove unused timeoday.c and timeofday.c files. (#62)

This commit is contained in:
Bruce Mitchener
2020-12-15 23:09:04 +07:00
committed by GitHub
parent 433a659063
commit 680e8485fe
4 changed files with 0 additions and 48 deletions

View File

@@ -1,23 +0,0 @@
/* $Id: timeoday.c,v 1.2 1999/01/03 02:07:37 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved
*/
static char *id = "$Id: timeoday.c,v 1.2 1999/01/03 02:07:37 sybalsky Exp $ Copyright (C) Venue";
/************************************************************************/
/* */
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
/* Manufactured in the United States of America. */
/* */
/************************************************************************/
#include "version.h"
#include <sys/time.h>
#include <sys/resource.h>
void gettimeofday(struct timeval *time, int ptr)
{
struct rusage stats;
getrusage(RUSAGE_SELF, &stats);
time->tv_sec = stats.ru_utime.tv_sec;
time->tv_usec = stats.ru_utime.tv_usec;
}

View File

@@ -1,23 +0,0 @@
/* $Id: timeofday.c,v 1.2 1999/01/03 02:07:37 sybalsky Exp $ (C) Copyright Venue, All Rights
* Reserved */
static char *id = "$Id: timeofday.c,v 1.2 1999/01/03 02:07:37 sybalsky Exp $ Copyright (C) Venue";
/************************************************************************/
/* */
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
/* Manufactured in the United States of America. */
/* */
/************************************************************************/
#include "version.h"
#include <sys/time.h>
#include <sys/resource.h>
void gettimeofday(struct timeval *time, int ptr)
{
struct rusage stats;
getrusage(RUSAGE_SELF, &stats);
time->tv_sec = stats.ru_utime.tv_sec;
time->tv_usec = stats.ru_utime.tv_usec;
}