diff options
author | jeff <jeff@FreeBSD.org> | 2007-12-16 06:12:53 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2007-12-16 06:12:53 +0000 |
commit | 436e8270ebc964cc1f1effe79ac5c10e92e78f7b (patch) | |
tree | 9b4f6092a5eb49b3f23dd73e4742925cbeb89f4f | |
parent | 7ac7bd84d8b1e7b2f8eafa6bf1c045c33b75d207 (diff) | |
download | FreeBSD-src-436e8270ebc964cc1f1effe79ac5c10e92e78f7b.zip FreeBSD-src-436e8270ebc964cc1f1effe79ac5c10e92e78f7b.tar.gz |
- Don't depend on header pollution to declare struct thread.
-rw-r--r-- | sys/sys/tty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/tty.h b/sys/sys/tty.h index 81f4f9c..ad74f90 100644 --- a/sys/sys/tty.h +++ b/sys/sys/tty.h @@ -69,6 +69,7 @@ struct tty; struct pps_state; struct cdev; struct cdevsw; +struct thread; typedef int t_open_t(struct tty *, struct cdev *); typedef void t_close_t(struct tty *); |