diff --git a/bin/u2dnames.sed b/bin/u2dnames.sed index 90a6d1d..4c56e0e 100755 --- a/bin/u2dnames.sed +++ b/bin/u2dnames.sed @@ -30,7 +30,6 @@ s/osmessage/osmsg/g s/osmessage/osmsg/g s/setsysout/setsout/g s/socketdvr/socdvr/g -s/timeofday/timeoday/g s/usersubrs/usrsubr/g s/InitXevent/Xinit/g s/LispWindow/Xlspwin/g diff --git a/bin/unix2dos.sed b/bin/unix2dos.sed index 5179204..809e7f6 100755 --- a/bin/unix2dos.sed +++ b/bin/unix2dos.sed @@ -30,7 +30,6 @@ s/osmessage\.c/osmsg\.c/g s/osmessage\.h/osmsg\.h/g s/setsysout\.c/setsout\.c/g s/socketdvr\.c/socdvr\.c/g -s/timeofday\.c/timeoday\.c/g s/usersubrs\.c/usrsubr\.c/g s/InitXevent\.c/Xinit\.c/g s/LispWindow\.c/Xlspwin\.c/g diff --git a/src/timeoday.c b/src/timeoday.c deleted file mode 100644 index f2d2170..0000000 --- a/src/timeoday.c +++ /dev/null @@ -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 -#include - -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; -} diff --git a/src/timeofday.c b/src/timeofday.c deleted file mode 100644 index 98c7ba1..0000000 --- a/src/timeofday.c +++ /dev/null @@ -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 -#include - -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; -}