summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-05-01 20:53:59 +0000
committerJim Meyering <jim@meyering.net>1997-05-01 20:53:59 +0000
commitccb48f46d62ec0de262c68bf853348d21548e31d (patch)
tree300a1ba52cfb634af6b514ce26f501a510d76772 /src
parent9080de09fc88d2ec30c3ef5dc18cba6fcfcc2ad3 (diff)
downloadcoreutils-ccb48f46d62ec0de262c68bf853348d21548e31d.tar.xz
indent cpp-directives
Diffstat (limited to 'src')
-rw-r--r--src/tr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tr.c b/src/tr.c
index 7005ae331..198635744 100644
--- 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>
@@ -37,11 +37,11 @@
#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