aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-06 17:44:23 +0000
committerRichard M. Stallman1993-06-06 17:44:23 +0000
commit2ffe7ef25038b822b54b87a36b4741133297afe0 (patch)
tree2be248ee9b8a328c293b333b9c1b8b4edac8b809 /src
parenta7971c39a9656d56959ec88b4008f6d66230cfe4 (diff)
downloademacs-2ffe7ef25038b822b54b87a36b4741133297afe0.tar.gz
emacs-2ffe7ef25038b822b54b87a36b4741133297afe0.zip
[HAVE_TZNAME]: Declare tzname if not macro.
Diffstat (limited to 'src')
-rw-r--r--src/systime.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/systime.h b/src/systime.h
index 4bc557c7067..6b87013dd56 100644
--- a/src/systime.h
+++ b/src/systime.h
@@ -28,6 +28,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
28#endif 28#endif
29#endif 29#endif
30 30
31#ifdef HAVE_TZNAME
32#ifndef tzname /* For SGI. */
33extern char *tzname[]; /* RS6000 and others want it this way. */
34#endif
35#endif
36
31/* SVr4 doesn't actually declare this in its #include files. */ 37/* SVr4 doesn't actually declare this in its #include files. */
32#ifdef USG5_4 38#ifdef USG5_4
33extern long timezone; 39extern long timezone;