1//----------------------------------------------------------------------
2//  This software is part of the OpenBeOS distribution and is covered
3//  by the OpenBeOS license.
4//
5//  Copyright (c) 2003 Tyler Dauwalder, tyler@dauwalder.net
6//----------------------------------------------------------------------
7
8/*! \file makeudfimage.cpp
9
10	UDF image builder.
11*/
12
13#include "Shell.h"
14
15int main(int argc, char *argv[])
16{
17	Shell shell;
18	shell.Run(argc, argv);
19	return 0;
20}
21