diff options
Diffstat (limited to 'libguile/posix.c')
-rw-r--r-- | libguile/posix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/posix.c b/libguile/posix.c index 982815049..5715a327d 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -1877,7 +1877,7 @@ SCM_DEFINE (scm_gethostname, "gethostname", 0, 0, 0, { const int save_errno = errno; - // No guile exceptions can occur before we have freed p's memory. + /* No guile exceptions can occur before we have freed p's memory. */ scm_dynwind_end (); free (p); @@ -1889,7 +1889,7 @@ SCM_DEFINE (scm_gethostname, "gethostname", 0, 0, 0, /* scm_from_locale_string may throw an exception. */ const SCM name = scm_from_locale_string (p); - // No guile exceptions can occur before we have freed p's memory. + /* No guile exceptions can occur before we have freed p's memory. */ scm_dynwind_end (); free (p); |