From: Paul Eggert Date: Sat, 16 Aug 2003 07:04:42 +0000 (+0000) Subject: #else #if -> #elif X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89ed813d8e25c8e83cff139a373d06a1ed6bdcc8;p=pspp #else #if -> #elif --- diff --git a/lib/xstrtoimax.c b/lib/xstrtoimax.c index 138be7cf6f..94c6577864 100644 --- a/lib/xstrtoimax.c +++ b/lib/xstrtoimax.c @@ -1,5 +1,5 @@ /* xstrtoimax.c -- A more useful interface to strtoimax. - Copyright 2001-2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,10 +23,8 @@ #if HAVE_INTTYPES_H # include -#else -# if HAVE_STDINT_H -# include -# endif +#elif HAVE_STDINT_H +# include #endif #define __strtol strtoimax diff --git a/lib/xstrtoumax.c b/lib/xstrtoumax.c index 3237f85334..59d6ecf5cd 100644 --- a/lib/xstrtoumax.c +++ b/lib/xstrtoumax.c @@ -1,5 +1,5 @@ /* xstrtoumax.c -- A more useful interface to strtoumax. - Copyright 1999, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,10 +23,8 @@ #if HAVE_INTTYPES_H # include -#else -# if HAVE_STDINT_H -# include -# endif +#elif HAVE_STDINT_H +# include #endif #define __strtol strtoumax