diff options
Diffstat (limited to 'fstests')
-rw-r--r-- | fstests/fstests.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fstests/fstests.c b/fstests/fstests.c index 61b4298a..eda5f94c 100644 --- a/fstests/fstests.c +++ b/fstests/fstests.c @@ -19,12 +19,21 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Written by Michael I. Bushnell. */ +#include <mach.h> +#include <stdio.h> +#include <hurd/hurd_types.h> +#include <hurd/fs.h> +#include <hurd/io.h> + +void main () { file_t root, passwd; retry_type retry; char buf[1024], *bp; + int buflen; char pathbuf[1024]; + extern file_t *_hurd_init_dtable; stdout = mach_open_devstream (_hurd_init_dtable[1], "w"); |