pmccabe2html: escaping of special characters
[gnulib.git] / lib / stat-size.h
index afd4967..049b8b9 100644 (file)
@@ -1,5 +1,5 @@
 /* macros useful in interpreting size-related values in struct stat.
-   Copyright (C) 1989, 1991-2012 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1991-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 #endif
 
 
-/* Much of the remainder of this file is not indented consistently
-   with the above, in order to make it easier to see that the text
-   is almost identical to part of the system.h header in coreutils.
-*/
 /* Get or fake the disk device blocksize.
    Usually defined by sys/param.h (if at all).  */
 #if !defined DEV_BSIZE && defined BSIZE
@@ -49,7 +45,7 @@
 
 
 
-/* Extract or fake data from a `struct stat'.
+/* Extract or fake data from a 'struct stat'.
    ST_BLKSIZE: Preferred I/O blocksize for the file, in bytes.
    ST_NBLOCKS: Number of blocks in the file, including indirect blocks.
    ST_NBLOCKSIZE: Size of blocks used when calculating ST_NBLOCKS.  */
 # endif
 #else
 /* Some systems, like Sequents, return st_blksize of 0 on pipes.
-   Also, when running `rsh hpux11-system cat any-file', cat would
+   Also, when running 'rsh hpux11-system cat any-file', cat would
    determine that the output stream had an st_blksize of 2147421096.
    Conversely st_blksize can be 2 GiB (or maybe even larger) with XFS
-   on 64-bit hosts.  Somewhat arbitrarily, limit the `optimal' block
+   on 64-bit hosts.  Somewhat arbitrarily, limit the "optimal" block
    size to SIZE_MAX / 8 + 1.  (Dividing SIZE_MAX by only 4 wouldn't
    suffice, since "cat" sometimes multiplies the result by 4.)  If
    anyone knows of a system for which this limit is too small, please