]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
indent cpp-directives
authorJim Meyering <jim@meyering.net>
Thu, 1 May 1997 20:53:59 +0000 (20:53 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 1 May 1997 20:53:59 +0000 (20:53 +0000)
src/tr.c

index 7005ae33155f3bc899e4b87054a18772cec3c354..1986357441a1b3ad9bfef63c1e10417a92238b99 100644 (file)
--- a/src/tr.c
+++ b/src/tr.c
@@ -15,7 +15,7 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
-/* Written by Jim Meyering, meyering@cs.utexas.edu.  */
+/* Written by Jim Meyering */
 
 #include <config.h>
 
 #include "error.h"
 
 #ifndef ULONG_MAX
-#define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
+# define ULONG_MAX ((unsigned long) ~(unsigned long) 0)
 #endif
 
 #ifndef LONG_MAX
-#define LONG_MAX ((long int) (ULONG_MAX >> 1))
+# define LONG_MAX ((long int) (ULONG_MAX >> 1))
 #endif
 
 #ifndef UINT_MAX
@@ -53,7 +53,7 @@
 #endif
 
 #ifndef UCHAR_MAX
-#define UCHAR_MAX 0xFF
+# define UCHAR_MAX 0xFF
 #endif
 
 #define N_CHARS (UCHAR_MAX + 1)
@@ -298,7 +298,7 @@ static int truncate_set1 = 0;
 static int translating;
 
 #ifndef BUFSIZ
-#define BUFSIZ 8192
+# define BUFSIZ 8192
 #endif
 
 #define IO_BUF_SIZE BUFSIZ