diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:56:35 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:56:35 +0000 |
commit | 9f357994e93a265307ac3b9a99b9f7e3c82cd94f (patch) | |
tree | 0f868eba1aa87ba89019575477d6130c22d38fc0 | |
parent | 050573a5bb4dcbd9818b39171db04b1d8b518b8e (diff) |
Initial revision
-rw-r--r-- | pfinet/time.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pfinet/time.c b/pfinet/time.c new file mode 100644 index 00000000..380c39a8 --- /dev/null +++ b/pfinet/time.c @@ -0,0 +1,27 @@ +/* + Copyright (C) 1995 Free Software Foundation, Inc. + Written by Michael I. Bushnell, p/BSG. + + This file is part of the GNU Hurd. + + The GNU Hurd is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2, or (at + your option) any later version. + + The GNU Hurd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ + +/* Time management functions */ + +void +do_gettimeofday (struct timeval *tp) +{ + gettimeofday (tp, 0); +} |