-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.m
35 lines (29 loc) · 1.11 KB
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
$Id$
Copyright 1995, 2003, 2004, 2005 Eric L. Smith <[email protected]>
Nonpareil is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation. Note that I am not
granting permission to redistribute or modify Nonpareil under the
terms of any later version of the General Public License.
Nonpareil is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (in the file "COPYING"); if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111, USA.
*/
//
// main.m
// nonpareil
//
// Created by Maciej Bartosiak on 05-09-09.
// Copyright 2005-2012 Maciej Bartosiak. All rights reserved.
//
#import <Cocoa/Cocoa.h>
int main(int argc, char *argv[])
{
return NSApplicationMain(argc, (const char **) argv);
}