1/*
2 * main.m
3
4 * Copyright (C) 2004 Banlu Kemiyatorn.
5 *               2004-2011 The GNUstep Application Project
6 *
7 * July 19, 2004
8 * Written by Banlu Kemiyatorn <object at gmail dot com>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
13
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * Library General Public License for more details.
18
19 * You should have received a copy of the GNU Library General Public
20 * License along with this library; if not, write to the Free
21 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
22 */
23
24#import <AppKit/AppKit.h>
25
26int main(int argc, const char **argv)
27{
28  return NSApplicationMain (argc, argv);
29}
30