diff options
author | phk <phk@FreeBSD.org> | 1994-11-02 04:55:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-11-02 04:55:15 +0000 |
commit | 0869125001f606a02f3ef175fefd0ec42095a6ec (patch) | |
tree | 140c0788f1995218f2b897b0f17bf66e612ec141 /usr.sbin/apmconf | |
parent | 76d6e07a930d67111b9e30a29b794dc37a65ca4f (diff) | |
download | FreeBSD-src-0869125001f606a02f3ef175fefd0ec42095a6ec.zip FreeBSD-src-0869125001f606a02f3ef175fefd0ec42095a6ec.tar.gz |
Remove a relic from the old "equiv" kludge
Diffstat (limited to 'usr.sbin/apmconf')
-rw-r--r-- | usr.sbin/apmconf/apmconf.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/usr.sbin/apmconf/apmconf.c b/usr.sbin/apmconf/apmconf.c index f8886d4..f3e1376 100644 --- a/usr.sbin/apmconf/apmconf.c +++ b/usr.sbin/apmconf/apmconf.c @@ -85,22 +85,6 @@ parse_option(void) } } -static struct apm_eqv_event eqv_event[APM_MAX_EQUIV_EVENTS]; -static int eqv_num = 0; - -static apm_eqv_event_t -get_eqv_event(int id) -{ - int i; - - for (i = 0; i < eqv_num; i++) { - if (id == eqv_event[i].aee_event) { - return &eqv_event[i]; - } - } - return NULL; -} - static void enable_apm(int dh) { |