diff options
author | Jim Meyering <jim@meyering.net> | 1997-12-21 22:39:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-12-21 22:39:53 +0000 |
commit | f54368ec1bdb5deaafe40b5ee64a0bf9b44381f5 (patch) | |
tree | 4d1111f8a97b4850b3d952baa07f5cc1e5b0a455 /src/fmt.c | |
parent | 44dddb31c083071a85e50330435b27912db796de (diff) | |
download | coreutils-f54368ec1bdb5deaafe40b5ee64a0bf9b44381f5.tar.gz coreutils-f54368ec1bdb5deaafe40b5ee64a0bf9b44381f5.tar.bz2 coreutils-f54368ec1bdb5deaafe40b5ee64a0bf9b44381f5.zip |
s/__P/PARAMS/
Diffstat (limited to 'src/fmt.c')
-rw-r--r-- | src/fmt.c | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -155,23 +155,23 @@ struct Word /* Forward declarations. */ -static void set_prefix __P ((char *p)); -static void fmt __P ((FILE *f)); -static bool get_paragraph __P ((FILE *f)); -static int get_line __P ((FILE *f, int c)); -static int get_prefix __P ((FILE *f)); -static int get_space __P ((FILE *f, int c)); -static int copy_rest __P ((FILE *f, int c)); -static bool same_para __P ((int c)); -static void flush_paragraph __P ((void)); -static void fmt_paragraph __P ((void)); -static void check_punctuation __P ((WORD *w)); -static COST base_cost __P ((WORD *this)); -static COST line_cost __P ((WORD *next, int len)); -static void put_paragraph __P ((WORD *finish)); -static void put_line __P ((WORD *w, int indent)); -static void put_word __P ((WORD *w)); -static void put_space __P ((int space)); +static void set_prefix PARAMS ((char *p)); +static void fmt PARAMS ((FILE *f)); +static bool get_paragraph PARAMS ((FILE *f)); +static int get_line PARAMS ((FILE *f, int c)); +static int get_prefix PARAMS ((FILE *f)); +static int get_space PARAMS ((FILE *f, int c)); +static int copy_rest PARAMS ((FILE *f, int c)); +static bool same_para PARAMS ((int c)); +static void flush_paragraph PARAMS ((void)); +static void fmt_paragraph PARAMS ((void)); +static void check_punctuation PARAMS ((WORD *w)); +static COST base_cost PARAMS ((WORD *this)); +static COST line_cost PARAMS ((WORD *next, int len)); +static void put_paragraph PARAMS ((WORD *finish)); +static void put_line PARAMS ((WORD *w, int indent)); +static void put_word PARAMS ((WORD *w)); +static void put_space PARAMS ((int space)); /* The name this program was run with. */ const char *program_name; |