diff options
author | Guido van Rossum <guido@python.org> | 1995-02-17 15:11:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-17 15:11:36 (GMT) |
commit | a38a5035768854e9e0d7e071baab30a0828bbc3a (patch) | |
tree | 3ea0bf94a164e70f3001cb4e70e700b2782933fd /Modules | |
parent | 5f05eb421a6f5178e01b3153035059d9df3411b8 (diff) | |
download | cpython-a38a5035768854e9e0d7e071baab30a0828bbc3a.zip cpython-a38a5035768854e9e0d7e071baab30a0828bbc3a.tar.gz cpython-a38a5035768854e9e0d7e071baab30a0828bbc3a.tar.bz2 |
fix comment opener after #endif
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 0e4331b..dec9db6 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -57,7 +57,7 @@ extern int unlink PROTO((const char *)); extern int pclose PROTO((FILE *)); #ifdef HAVE_SYMLINK extern int symlink PROTO((const char *, const char *)); -#endif /_ HAVE_SYMLINK */ +#endif /* HAVE_SYMLINK */ #ifdef HAVE_LSTAT extern int lstat PROTO((const char *, struct stat *)); #endif /* HAVE_LSTAT */ |