tty_pts: don't rely on tty header pollution for sys/mutex.h

tty_pts.c relies on sys/tty.h for sys/mutex.h. Include it directly instead
of relying on this pollution to ease the diff for anyone that wants to try
converting the tty lock to anything other than a mutex.
This commit is contained in:
Kyle Evans 2019-11-29 03:56:01 +00:00
parent ed6232893c
commit cf29433090
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355206

View File

@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
#include <sys/kernel.h>
#include <sys/limits.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/poll.h>
#include <sys/proc.h>
#include <sys/racct.h>