diff --git a/sys/sys/conf.h b/sys/sys/conf.h index e9e2bc9377e6..59ab5df979ac 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -1,4 +1,4 @@ -/* $NetBSD: conf.h,v 1.127 2007/07/09 21:11:32 ad Exp $ */ +/* $NetBSD: conf.h,v 1.128 2007/07/21 19:20:39 ad Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -210,6 +210,7 @@ int ttyerrpoll (struct tty *, int, struct lwp *); int ttynullioctl(struct tty *, u_long, void *, int, struct lwp *); int iskmemdev(dev_t); +int seltrue_kqfilter(dev_t, struct knote *); #endif #ifdef _KERNEL diff --git a/sys/sys/event.h b/sys/sys/event.h index 2d8534cb7e0f..35f03d5af56b 100644 --- a/sys/sys/event.h +++ b/sys/sys/event.h @@ -1,4 +1,4 @@ -/* $NetBSD: event.h,v 1.17 2005/12/11 12:25:20 christos Exp $ */ +/* $NetBSD: event.h,v 1.18 2007/07/21 19:20:40 ad Exp $ */ /*- * Copyright (c) 1999,2000,2001 Jonathan Lemon * All rights reserved. @@ -228,7 +228,6 @@ int kfilter_register(const char *, const struct filterops *, int *); int kfilter_unregister(const char *); int filt_seltrue(struct knote *, long); -int seltrue_kqfilter(dev_t, struct knote *); #else /* !_KERNEL */