aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-12-06 19:56:47 +0000
committerDave Love2000-12-06 19:56:47 +0000
commit1da6faed0b918504c27c88a56cc9c9dbcd7a6373 (patch)
treed19ab47e80f99e85e00c9ac76a5ccaef0908d58b /src
parent39cb51e73bd76cd3ba09b71f63cdf66aa7495814 (diff)
downloademacs-1da6faed0b918504c27c88a56cc9c9dbcd7a6373.tar.gz
emacs-1da6faed0b918504c27c88a56cc9c9dbcd7a6373.zip
Change some #if foo to #ifdef foo.
Fix copyright years.
Diffstat (limited to 'src')
-rw-r--r--src/strftime.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/strftime.c b/src/strftime.c
index f6e88e92a72..61047bf9578 100644
--- a/src/strftime.c
+++ b/src/strftime.c
@@ -1,4 +1,4 @@
1/* Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc. 1/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
2 This file is part of the GNU Emacs. 2 This file is part of the GNU Emacs.
3 3
4 The GNU C Library is free software; you can redistribute it and/or 4 The GNU C Library is free software; you can redistribute it and/or
@@ -77,14 +77,13 @@ extern char *tzname[];
77 static const mbstate_t mbstate_zero; 77 static const mbstate_t mbstate_zero;
78#endif 78#endif
79 79
80#if HAVE_LIMITS_H 80#ifdef HAVE_LIMITS_H
81# include <limits.h> 81# include <limits.h>
82#endif 82#endif
83 83
84#if STDC_HEADERS 84#ifdef STDC_HEADERS
85# include <stddef.h> 85# include <stddef.h>
86# include <stdlib.h> 86# include <stdlib.h>
87# include <string.h>
88#else 87#else
89# ifndef HAVE_MEMCPY 88# ifndef HAVE_MEMCPY
90# define memcpy(d, s, n) bcopy ((s), (d), (n)) 89# define memcpy(d, s, n) bcopy ((s), (d), (n))