summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2013-03-09 22:39:27 +0100
committerAndy Wingo <wingo@pobox.com>2013-03-09 22:39:27 +0100
commit3baf6e8b0577c32610cc6ba97af209185c16845a (patch)
treea35998db6219fe72141a7466db00a0df9460f7fc
parentb0dbbacbe40fc8aa0b057101f84aed96ac4bea07 (diff)
downloadguile-3baf6e8b0577c32610cc6ba97af209185c16845a.tar.gz
simplify stime back-compat shims for tzname
* libguile/stime.c: Remove tzname declarations for ancient mingw and SGI RS6000.
-rw-r--r--libguile/stime.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libguile/stime.c b/libguile/stime.c
index 7fdbba9a7..90de697e5 100644
--- a/libguile/stime.c
+++ b/libguile/stime.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2013 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
@@ -84,13 +84,6 @@
# include <sys/timeb.h>
#endif
-#ifndef tzname /* For SGI. */
-extern char *tzname[]; /* RS6000 and others reject char **tzname. */
-#endif
-#if defined (__MINGW32__)
-# define tzname _tzname
-#endif
-
#if ! HAVE_DECL_STRPTIME
extern char *strptime ();
#endif