From a38a5035768854e9e0d7e071baab30a0828bbc3a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 17 Feb 1995 15:11:36 +0000 Subject: [PATCH] fix comment opener after #endif --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 0e4331ba9a7..dec9db6eec2 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 */