summaryrefslogtreecommitdiff
path: root/src/dd.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-12-16 15:32:32 +0000
committerJim Meyering <jim@meyering.net>1997-12-16 15:32:32 +0000
commit03f9f3dbec05c3b5fad721f5be0203c57c455d0f (patch)
tree8abb75825016abd7db2d8c6af56b58f6a04dc083 /src/dd.c
parentfc22546441c3f0460fd93ec9c0ad6cc6ef2c9698 (diff)
downloadcoreutils-03f9f3dbec05c3b5fad721f5be0203c57c455d0f.tar.xz
s/__P/PARAMS/g
Diffstat (limited to 'src/dd.c')
-rw-r--r--src/dd.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/dd.c b/src/dd.c
index 4e36c9734..66a9b1180 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -64,22 +64,22 @@
int safe_read ();
int full_write ();
-static RETSIGTYPE interrupt_handler __P ((int));
-static int bit_count __P ((register unsigned int i));
-static uintmax_t parse_integer __P ((char *str, int *));
-static void apply_translations __P ((void));
-static void copy __P ((void));
-static void copy_simple __P ((unsigned char *buf, int nread));
-static void copy_with_block __P ((unsigned char *buf, int nread));
-static void copy_with_unblock __P ((unsigned char *buf, int nread));
-static void parse_conversion __P ((char *str));
-static void translate_charset __P ((const unsigned char *new_trans));
-static void quit __P ((int code));
-static void scanargs __P ((int argc, char **argv));
-static void skip __P ((int fdesc, char *file, uintmax_t records,
+static RETSIGTYPE interrupt_handler PARAMS ((int));
+static int bit_count PARAMS ((register unsigned int i));
+static uintmax_t parse_integer PARAMS ((char *str, int *));
+static void apply_translations PARAMS ((void));
+static void copy PARAMS ((void));
+static void copy_simple PARAMS ((unsigned char *buf, int nread));
+static void copy_with_block PARAMS ((unsigned char *buf, int nread));
+static void copy_with_unblock PARAMS ((unsigned char *buf, int nread));
+static void parse_conversion PARAMS ((char *str));
+static void translate_charset PARAMS ((const unsigned char *new_trans));
+static void quit PARAMS ((int code));
+static void scanargs PARAMS ((int argc, char **argv));
+static void skip PARAMS ((int fdesc, char *file, uintmax_t records,
size_t blocksize, unsigned char *buf));
-static void usage __P ((int status));
-static void write_output __P ((void));
+static void usage PARAMS ((int status));
+static void write_output PARAMS ((void));
/* The name this program was run with. */
char *program_name;