X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffileblocks.c;h=1a44516f3d0fb2a61af0bab5be00f22a6ae378df;hb=9166d49ff02e2622e63f0f8a7b00227e82d40dff;hp=47a730898a93876986615712be107750a3910cbb;hpb=6377e850e1e182dc6f5e6a72284e522031c8ee1d;p=gnulib.git diff --git a/lib/fileblocks.c b/lib/fileblocks.c index 47a730898..1a44516f3 100644 --- a/lib/fileblocks.c +++ b/lib/fileblocks.c @@ -17,7 +17,7 @@ /* Written by Brian L. Matthews, blm@6sceng.UUCP. */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H # include #endif @@ -34,6 +34,11 @@ # endif # ifndef NINDIR + +# if defined (__DJGPP__) +typedef long daddr_t; /* for disk address */ +# endif + /* Some SysV's, like Irix, seem to lack this. Hope it's correct. */ /* Number of inode pointers per indirect block. */ # define NINDIR (BSIZE / sizeof (daddr_t)) @@ -45,8 +50,7 @@ /* 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;