]> git.ipfire.org Git - thirdparty/man-pages.git/commit
inode.7: STANDARDS: Remove bogus recommendation
authorAlejandro Colomar <alx@kernel.org>
Fri, 17 Mar 2023 14:14:41 +0000 (15:14 +0100)
committerAlejandro Colomar <alx@kernel.org>
Fri, 17 Mar 2023 21:06:00 +0000 (22:06 +0100)
commit9441a71d1debc9cf56d09875aa574e66fe89b6fb
treec02ab6a9ba0637adf2bd77bf63dd3d5bfa313d9f
parentf485a22184e66248566ff80ad1faa7168f65f331
inode.7: STANDARDS: Remove bogus recommendation

'blkcnt_t' is defined in <sys/types.h>, per POSIX.1-2001, as
blkcnt_t(3type) documents.  Also, it doesn't need any ftm(7) to be
defined, AFAICS:

    $ cat blkcnt_t.c
    #include <sys/types.h>

    int main(void) {
        blkcnt_t x;

        return x = 0;
    }
    $ cc -Wall -Wextra blkcnt_t.c
    $

Signed-off-by: Alejandro Colomar <alx@kernel.org>
man7/inode.7