From: Dave Love Date: Wed, 6 Dec 2000 19:56:47 +0000 (+0000) Subject: Change some #if foo to #ifdef foo. X-Git-Tag: emacs-pretest-21.0.93~138 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1da6faed0b918504c27c88a56cc9c9dbcd7a6373;p=emacs.git Change some #if foo to #ifdef foo. Fix copyright years. --- 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 @@ -/* Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000 Free Software Foundation, Inc. This file is part of the GNU Emacs. The GNU C Library is free software; you can redistribute it and/or @@ -77,14 +77,13 @@ extern char *tzname[]; static const mbstate_t mbstate_zero; #endif -#if HAVE_LIMITS_H +#ifdef HAVE_LIMITS_H # include #endif -#if STDC_HEADERS +#ifdef STDC_HEADERS # include # include -# include #else # ifndef HAVE_MEMCPY # define memcpy(d, s, n) bcopy ((s), (d), (n))