repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vfs: check userland buffers before reading them.
[haiku.git]
/
src
/
apps
/
icon-o-matic
/
main.cpp
blob
c7b6492ce7af203e5be539d0c7bdd7f8fd4a70cd
1
/*
2
* Copyright 2006, Haiku.
3
* Distributed under the terms of the MIT License.
4
*
5
* Authors:
6
* Stephan Aßmus <superstippi@gmx.de>
7
*/
8
9
#include
"IconEditorApp.h"
10
11
int
12
main
(
int
argc
,
char
**
argv
)
13
{
14
IconEditorApp
*
app
=
new
IconEditorApp
();
15
app
->
Run
();
16
17
delete
app
;
18
19
return
0
;
20
}