diff options
author | Jim Meyering <jim@meyering.net> | 1993-02-25 14:28:21 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-02-25 14:28:21 +0000 |
commit | efd83f0b5784ac7a1f038282ac55d9a3322aedd3 (patch) | |
tree | 79e0b38b9fe21e7c93b244df4a86b0babab7eb13 | |
parent | bc18a8e7f735f4fef1cb2b781f7aef1e4ac86a43 (diff) | |
download | coreutils-efd83f0b5784ac7a1f038282ac55d9a3322aedd3.tar.xz |
Reformat with GNU indent-1.7.
-rw-r--r-- | src/od.c | 58 |
1 files changed, 29 insertions, 29 deletions
@@ -94,43 +94,43 @@ char *xrealloc (); void error (); enum size_spec -{ - NO_SIZE, - CHAR, - SHORT, - INT, - LONG, - FP_SINGLE, - FP_DOUBLE, - FP_LONG_DOUBLE -}; + { + NO_SIZE, + CHAR, + SHORT, + INT, + LONG, + FP_SINGLE, + FP_DOUBLE, + FP_LONG_DOUBLE + }; enum output_format -{ - SIGNED_DECIMAL, - UNSIGNED_DECIMAL, - OCTAL, - HEXADECIMAL, - FLOATING_POINT, - NAMED_CHARACTER, - CHARACTER -}; + { + SIGNED_DECIMAL, + UNSIGNED_DECIMAL, + OCTAL, + HEXADECIMAL, + FLOATING_POINT, + NAMED_CHARACTER, + CHARACTER + }; enum strtoul_error -{ - UINT_OK, UINT_INVALID, UINT_INVALID_SUFFIX_CHAR, UINT_OVERFLOW -}; + { + UINT_OK, UINT_INVALID, UINT_INVALID_SUFFIX_CHAR, UINT_OVERFLOW + }; typedef enum strtoul_error strtoul_error; /* Each output format specification (from POSIX `-t spec' or from old-style options) is represented by one of these structures. */ struct tspec -{ - enum output_format fmt; - enum size_spec size; - void (*print_function) (); - char *fmt_string; -}; + { + enum output_format fmt; + enum size_spec size; + void (*print_function) (); + char *fmt_string; + }; /* Convert the number of 8-bit bytes of a binary representation to the number of characters (digits + sign if the type is signed) @@ -1721,7 +1721,7 @@ main (argc, argv) } #endif - err |= (flag_dump_strings ? dump_strings () : dump ()); + err |= (flag_dump_strings ? dump_strings () : dump ()); if (have_read_stdin && fclose (stdin) == EOF) error (2, errno, "standard input"); |