diff options
Diffstat (limited to 'Mac/OSX/PythonLauncher/main.m')
-rwxr-xr-x | Mac/OSX/PythonLauncher/main.m | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Mac/OSX/PythonLauncher/main.m b/Mac/OSX/PythonLauncher/main.m deleted file mode 100755 index 6841433f42..0000000000 --- a/Mac/OSX/PythonLauncher/main.m +++ /dev/null @@ -1,17 +0,0 @@ -// -// main.m -// PythonLauncher -// -// Created by Jack Jansen on Fri Jul 19 2002. -// Copyright (c) 2002 __MyCompanyName__. All rights reserved. -// - -#import <Cocoa/Cocoa.h> -#include <unistd.h> - -int main(int argc, const char *argv[]) -{ - char *home = getenv("HOME"); - if (home) chdir(home); - return NSApplicationMain(argc, argv); -} |