summaryrefslogtreecommitdiff
path: root/lib/obstack.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-07-15 03:36:16 +0000
committerJim Meyering <jim@meyering.net>1996-07-15 03:36:16 +0000
commite8b07e3796d1a3cdcc36cf18fc83707440dbc4b2 (patch)
tree6ff97164052659ec555868ce6b3b8f2a26b6d996 /lib/obstack.c
parent1b5bb5c05ad4b9eac3e9fb643b520270ec8f8f87 (diff)
downloadcoreutils-e8b07e3796d1a3cdcc36cf18fc83707440dbc4b2.tar.xz
update FSF address in copyright
Diffstat (limited to 'lib/obstack.c')
-rw-r--r--lib/obstack.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/obstack.c b/lib/obstack.c
index a8a450070..955148842 100644
--- a/lib/obstack.c
+++ b/lib/obstack.c
@@ -12,8 +12,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+along with this program; if not, write to the Free Software Foundation,
+Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "obstack.h"
@@ -31,7 +31,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#if defined (_LIBC) || !defined (__GNU_LIBRARY__)
-#ifdef __STDC__
+#if defined (__STDC__) && __STDC__
#define POINTER void *
#else
#define POINTER char *
@@ -267,7 +267,7 @@ _obstack_newchunk (h, length)
This is here for debugging.
If you use it in a program, you are probably losing. */
-#ifdef __STDC__
+#if defined (__STDC__) && __STDC__
/* Suppress -Wmissing-prototypes warning. We don't want to declare this in
obstack.h because it is just for debugging. */
int _obstack_allocated_p (struct obstack *h, POINTER obj);
@@ -374,7 +374,7 @@ obstack_free (h, obj)
/* Now define the functional versions of the obstack macros.
Define them to simply use the corresponding macros to do the job. */
-#ifdef __STDC__
+#if defined (__STDC__) && __STDC__
/* These function definitions do not work with non-ANSI preprocessors;
they won't pass through the macro names in parentheses. */