vfs: check userland buffers before reading them.
[haiku.git] / src / apps / icon-o-matic / main.cpp
blobc7b6492ce7af203e5be539d0c7bdd7f8fd4a70cd
1 /*
2 * Copyright 2006, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Stephan Aßmus <superstippi@gmx.de>
7 */
9 #include "IconEditorApp.h"
11 int
12 main(int argc, char** argv)
14 IconEditorApp* app = new IconEditorApp();
15 app->Run();
17 delete app;
19 return 0;