summaryrefslogtreecommitdiff
path: root/lib/fileblocks.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
committerJim Meyering <jim@meyering.net>1998-12-07 03:12:10 +0000
commitcf42d3e5e80be6bf7093a3ca9be0d04033eaf527 (patch)
tree543a42788b98d2434d48ed591ab42661d6875bd8 /lib/fileblocks.c
parentb033b039d62ed233894b85d4bf9f5f8dbaf34197 (diff)
downloadgnulib-cf42d3e5e80be6bf7093a3ca9be0d04033eaf527.tar.gz
ansideclify
Diffstat (limited to 'lib/fileblocks.c')
-rw-r--r--lib/fileblocks.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/fileblocks.c b/lib/fileblocks.c
index 0c182d8e02..1a44516f3d 100644
--- a/lib/fileblocks.c
+++ b/lib/fileblocks.c
@@ -50,8 +50,7 @@ typedef long daddr_t; /* for disk address */
/* Return the number of 512-byte blocks in a file of SIZE bytes. */
off_t
-st_blocks (size)
- off_t size;
+st_blocks (off_t size)
{
off_t datablks = size / 512 + (size % 512 != 0);
off_t indrblks = 0;