summaryrefslogtreecommitdiff
path: root/src/du.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/du.c
parentfc22546441c3f0460fd93ec9c0ad6cc6ef2c9698 (diff)
downloadcoreutils-03f9f3dbec05c3b5fad721f5be0203c57c455d0f.tar.xz
s/__P/PARAMS/g
Diffstat (limited to 'src/du.c')
-rw-r--r--src/du.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/du.c b/src/du.c
index 4dbb315d6..ffd87d327 100644
--- a/src/du.c
+++ b/src/du.c
@@ -100,18 +100,18 @@ typedef struct String String;
int stat ();
int lstat ();
-static int hash_insert __P ((ino_t ino, dev_t dev));
-static int hash_insert2 __P ((struct htab *_htab, ino_t ino, dev_t dev));
-static uintmax_t count_entry __P ((const char *ent, int top, dev_t last_dev,
+static int hash_insert PARAMS ((ino_t ino, dev_t dev));
+static int hash_insert2 PARAMS ((struct htab *_htab, ino_t ino, dev_t dev));
+static uintmax_t count_entry PARAMS ((const char *ent, int top, dev_t last_dev,
int depth));
-static void du_files __P ((char **files));
-static void hash_init __P ((unsigned int modulus,
+static void du_files PARAMS ((char **files));
+static void hash_init PARAMS ((unsigned int modulus,
unsigned int entry_tab_size));
-static void hash_reset __P ((void));
-static void str_concatc __P ((String *s1, char *cstr));
-static void str_copyc __P ((String *s1, char *cstr));
-static void str_init __P ((String **s1, unsigned int size));
-static void str_trunc __P ((String *s1, unsigned int length));
+static void hash_reset PARAMS ((void));
+static void str_concatc PARAMS ((String *s1, char *cstr));
+static void str_copyc PARAMS ((String *s1, char *cstr));
+static void str_init PARAMS ((String **s1, unsigned int size));
+static void str_trunc PARAMS ((String *s1, unsigned int length));
/* Name under which this program was invoked. */
char *program_name;