From: Bill Joy Date: Fri, 16 Mar 1990 10:10:22 +0000 (-0800) Subject: specify pathnames for includes X-Git-Tag: BSD-4_3_Reno-Snapshot-Development~4118 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/5394533ccbe74c5d17e98fb0e9817232e05b5419 specify pathnames for includes SCCS-vsn: sys/stand.att/sys.c 7.8 --- diff --git a/usr/src/sys/stand.att/sys.c b/usr/src/sys/stand.att/sys.c index c97d46af52..7d93341978 100644 --- a/usr/src/sys/stand.att/sys.c +++ b/usr/src/sys/stand.att/sys.c @@ -3,14 +3,16 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)sys.c 7.7 (Berkeley) %G% + * @(#)sys.c 7.8 (Berkeley) %G% */ -#include "param.h" -#include "inode.h" -#include "fs.h" -#include "dir.h" -#include "reboot.h" +#include "sys/param.h" +#include "sys/time.h" +#include "sys/vnode.h" +#include "ufs/inode.h" +#include "ufs/fs.h" +#include "ufs/dir.h" +#include "sys/reboot.h" #include "saio.h" #define isdigit(c) ((u_int)((c) - '0') <= 9)