From c35f55124bd0449346bfdfb1ca2b085147f97a47 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 16 Nov 1994 13:05:38 +0000 Subject: . --- src/fmt.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/src/fmt.c b/src/fmt.c index 8e591a505..748798ad0 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -18,16 +18,12 @@ /* Written by Ross Paterson . */ -#ifdef HAVE_CONFIG_H #include -#endif - #include - #include -#include "system.h" +#include -#include "getopt.h" +#include "system.h" #include "version.h" /* The following parameters represent the program's idea of what is @@ -101,9 +97,9 @@ typedef long COST; /* Extra ctype(3)-style macros. */ -#define isopen(c) (strchr ("([`'\"", c) != NULL) -#define isclose(c) (strchr (")]'\"", c) != NULL) -#define isperiod(c) (strchr (".?!", c) != NULL) +#define isopen(c) (index ("([`'\"", c) != NULL) +#define isclose(c) (index (")]'\"", c) != NULL) +#define isperiod(c) (index (".?!", c) != NULL) /* Size of a tab stop, for expansion on input and re-introduction on output. */ @@ -387,7 +383,7 @@ main (argc, argv) if (show_version) { - printf ("%s\n", version_string); + printf ("%s - %s\n", program_name, version_string); exit (0); } -- cgit v1.2.3-54-g00ecf