diff --git a/sys/arch/alpha/stand/boot/filesystem.c b/sys/arch/alpha/stand/boot/filesystem.c index cb030e810b42..0748ea2c5c67 100644 --- a/sys/arch/alpha/stand/boot/filesystem.c +++ b/sys/arch/alpha/stand/boot/filesystem.c @@ -1,4 +1,4 @@ -/* $NetBSD: filesystem.c,v 1.4 1998/09/22 00:39:31 ross Exp $ */ +/* $NetBSD: filesystem.c,v 1.5 1998/09/24 05:23:58 ross Exp $ */ /* * Copyright (c) 1993 Philip A. Nelson. @@ -35,13 +35,16 @@ #include #include -#include +#include #include struct fs_ops file_system[] = { - { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat }, - { cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek, cd9660_stat }, - { tfs_open, tfs_close, tfs_read, tfs_write, tfs_seek, tfs_stat }, + { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, + ufs_stat }, + { cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek, + cd9660_stat }, + { ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write, ustarfs_seek, + ustarfs_stat }, }; int nfsys = sizeof(file_system)/sizeof(struct fs_ops);