summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-06-24 00:48:44 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-06-24 00:48:44 (GMT)
commit6cc48148fe0ecd600f796031ecfd16813f7f0d1e (patch)
tree7f5ede12f03197fbc208ec7dbc6c96ea020ef4e7 /Modules
parent941b8bc41acd4bfbc52a5cfb28054bdc37a05ca5 (diff)
downloadcpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.zip
cpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.tar.gz
cpython-6cc48148fe0ecd600f796031ecfd16813f7f0d1e.tar.bz2
Change comment from C++ style to C.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/getpath.c2
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);