specify pathnames for includes
authorBill Joy <root@ucbvax.Berkeley.EDU>
Fri, 16 Mar 1990 10:10:22 +0000 (02:10 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Fri, 16 Mar 1990 10:10:22 +0000 (02:10 -0800)
SCCS-vsn: sys/stand.att/sys.c 7.8

usr/src/sys/stand.att/sys.c

index c97d46a..7d93341 100644 (file)
@@ -3,14 +3,16 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * 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)
 #include "saio.h"
 
 #define        isdigit(c)      ((u_int)((c) - '0') <= 9)