summaryrefslogtreecommitdiff
path: root/Mac/OSX/PythonLauncher/main.m
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2006-06-07 19:02:03 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2006-06-07 19:02:03 +0000
commit32f5d8f1b153be33be42df82eb0f04c42006db54 (patch)
tree7f3565bf290417baa9d0c13bb762b831edbd126c /Mac/OSX/PythonLauncher/main.m
parent0e5b70d417ef5056007e84581e2843b97e254af8 (diff)
downloadcpython-git-32f5d8f1b153be33be42df82eb0f04c42006db54.tar.gz
Move Mac/OSX/* one level up
Diffstat (limited to 'Mac/OSX/PythonLauncher/main.m')
-rwxr-xr-xMac/OSX/PythonLauncher/main.m17
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);
-}