diff options
-rw-r--r-- | usr.sbin/fdcontrol/fdcontrol.c | 1 | ||||
-rw-r--r-- | usr.sbin/pcvt/mcon/mcon.c | 1 | ||||
-rw-r--r-- | usr.sbin/qcamcontrol/qcamcontrol.c | 1 | ||||
-rw-r--r-- | usr.sbin/rndcontrol/rndcontrol.c | 3 | ||||
-rw-r--r-- | usr.sbin/rpc.ypxfrd/ypxfrd_main.c | 5 | ||||
-rw-r--r-- | usr.sbin/sgsc/sgsc.c | 1 |
6 files changed, 9 insertions, 3 deletions
diff --git a/usr.sbin/fdcontrol/fdcontrol.c b/usr.sbin/fdcontrol/fdcontrol.c index d7d9846..d621a72 100644 --- a/usr.sbin/fdcontrol/fdcontrol.c +++ b/usr.sbin/fdcontrol/fdcontrol.c @@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> +#include <unistd.h> #include <machine/ioctl_fd.h> #include <sys/file.h> diff --git a/usr.sbin/pcvt/mcon/mcon.c b/usr.sbin/pcvt/mcon/mcon.c index dac70d7..1b88dbf 100644 --- a/usr.sbin/pcvt/mcon/mcon.c +++ b/usr.sbin/pcvt/mcon/mcon.c @@ -51,6 +51,7 @@ #include <machine/pcvt_ioctl.h> #include <stdio.h> #include <stdlib.h> +#include <unistd.h> #include <string.h> #include <sys/fcntl.h> diff --git a/usr.sbin/qcamcontrol/qcamcontrol.c b/usr.sbin/qcamcontrol/qcamcontrol.c index f18ac19..8df213e 100644 --- a/usr.sbin/qcamcontrol/qcamcontrol.c +++ b/usr.sbin/qcamcontrol/qcamcontrol.c @@ -32,6 +32,7 @@ #include <stdio.h> #include <stdlib.h> +#include <unistd.h> #include <sys/fcntl.h> #include <sys/ioctl.h> #include <machine/qcam.h> diff --git a/usr.sbin/rndcontrol/rndcontrol.c b/usr.sbin/rndcontrol/rndcontrol.c index 27ca2ba..9582dd5 100644 --- a/usr.sbin/rndcontrol/rndcontrol.c +++ b/usr.sbin/rndcontrol/rndcontrol.c @@ -30,11 +30,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: rndcontrol.c,v 1.6 1997/02/22 16:12:47 peter Exp $ * */ #include <stdlib.h> +#include <unistd.h> #include <stdio.h> #include <fcntl.h> #include <sys/ioctl.h> diff --git a/usr.sbin/rpc.ypxfrd/ypxfrd_main.c b/usr.sbin/rpc.ypxfrd/ypxfrd_main.c index 304d25f..7781ee1 100644 --- a/usr.sbin/rpc.ypxfrd/ypxfrd_main.c +++ b/usr.sbin/rpc.ypxfrd/ypxfrd_main.c @@ -29,12 +29,13 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: ypxfrd_main.c,v 1.3 1997/02/22 16:13:02 peter Exp $ */ #include "ypxfrd.h" #include <stdio.h> #include <stdlib.h> /* getenv, exit */ +#include <unistd.h> #include <rpc/pmap_clnt.h> /* for pmap_unset */ #include <string.h> /* strcmp */ #include <signal.h> @@ -60,7 +61,7 @@ #define _RPCSVC_CLOSEDOWN 120 #ifndef lint -static const char rcsid[] = "$Id$"; +static const char rcsid[] = "$Id: ypxfrd_main.c,v 1.3 1997/02/22 16:13:02 peter Exp $"; #endif /* not lint */ int _rpcpmstart; /* Started by a port monitor ? */ static int _rpcfdtype; diff --git a/usr.sbin/sgsc/sgsc.c b/usr.sbin/sgsc/sgsc.c index 12ab169..8cbc6b3 100644 --- a/usr.sbin/sgsc/sgsc.c +++ b/usr.sbin/sgsc/sgsc.c @@ -30,6 +30,7 @@ */ #include <stdlib.h> +#include <unistd.h> #include <stdio.h> #include <sys/file.h> #include <sys/ioctl.h> |