diff options
| author | 2004-06-21 23:50:35 +0000 | |
|---|---|---|
| committer | 2004-06-21 23:50:35 +0000 | |
| commit | 3212dc310ec9c3aa2cd9e7180fe81d66a37e4443 (patch) | |
| tree | b8b428eb79259cc5ab8e628e0b78b672af7aa38b /sys/netiso/if_eon.c | |
| parent | When in_ifinit fails and we've created a new address, clean it up before (diff) | |
| download | wireguard-openbsd-3212dc310ec9c3aa2cd9e7180fe81d66a37e4443.tar.xz wireguard-openbsd-3212dc310ec9c3aa2cd9e7180fe81d66a37e4443.zip | |
First step towards more sane time handling in the kernel -- this changes
things such that code that only need a second-resolution uptime or wall
time, and used to get that from time.tv_secs or mono_time.tv_secs now get
this from separate time_t globals time_second and time_uptime.
ok art@ niklas@ nordin@
Diffstat (limited to 'sys/netiso/if_eon.c')
| -rw-r--r-- | sys/netiso/if_eon.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netiso/if_eon.c b/sys/netiso/if_eon.c index eeb0fd4636a..a202b92a12c 100644 --- a/sys/netiso/if_eon.c +++ b/sys/netiso/if_eon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_eon.c,v 1.23 2004/01/03 14:08:54 espie Exp $ */ +/* $OpenBSD: if_eon.c,v 1.24 2004/06/21 23:50:37 tholo Exp $ */ /* $NetBSD: if_eon.c,v 1.15 1996/05/09 22:29:37 scottr Exp $ */ /*- @@ -105,8 +105,6 @@ SOFTWARE. #include <sys/stdarg.h> -extern struct timeval time; - #define EOK 0 struct ifnet eonif[1]; |
