From: Jim Meyering <jim@meyering.net>
Date: Sat, 10 Jul 1999 16:36:56 +0000 (+0000)
Subject: use a space, not TAB after #define
X-Git-Tag: TEXTUTILS-1_22n~11
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=41868d182a38e224a19743fcaffd024ea4a09334;p=gnulib.git

use a space, not TAB after #define
---

diff --git a/lib/strtoul.c b/lib/strtoul.c
index 715ba30b27..298ae9eab8 100644
--- a/lib/strtoul.c
+++ b/lib/strtoul.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1999 Free Software Foundation, Inc.
 
 NOTE: The canonical source of this file is maintained with the GNU C Library.
 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
@@ -17,6 +17,6 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software Foundation,
 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-#define	UNSIGNED	1
+#define UNSIGNED	1
 
 #include <strtol.c>