diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-06-24 00:48:44 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-06-24 00:48:44 (GMT) |
commit | 6cc48148fe0ecd600f796031ecfd16813f7f0d1e (patch) | |
tree | 7f5ede12f03197fbc208ec7dbc6c96ea020ef4e7 | |
parent | 941b8bc41acd4bfbc52a5cfb28054bdc37a05ca5 (diff) | |
download | cpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.zip cpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.tar.gz cpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.tar.bz2 |
Change comment from C++ style to C.
-rw-r--r-- | Modules/getpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index b3921e3..cbdcbd8 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -398,7 +398,7 @@ calculate_path(void) */ else if(0 == _NSGetExecutablePath(progpath, &nsexeclength) && progpath[0] == SEP) ; -#endif // __APPLE__ +#endif /* __APPLE__ */ else if (path) { while (1) { char *delim = strchr(path, DELIM); |