diff options
Diffstat (limited to 'libguile/strerror.c')
-rw-r--r-- | libguile/strerror.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libguile/strerror.c b/libguile/strerror.c index 0e0e94ee8..c4c19c2fb 100644 --- a/libguile/strerror.c +++ b/libguile/strerror.c @@ -1,5 +1,6 @@ /* Turning errno values into English error messages. - Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 2000, 2001, 2006 Free Software Foundation, Inc. + Copyright (C) 1985-1988,1993,1994,1995,2000-2001,2006,2018 + 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 License @@ -27,9 +28,3 @@ strerror (int errnum) return sys_errlist[errnum]; return (char *) "Unknown error"; } - -/* - Local Variables: - c-file-style: "gnu" - End: -*/ |