diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2013-05-08 00:00:46 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2013-05-08 00:00:46 +0200 |
commit | ba8539473296645ef5e710e506534682f9eb5572 (patch) | |
tree | 08a5622255d6fefcc4ed6778171e71642238b3fa /misc/sys | |
parent | 8347c74cc5c972aa9e57747177b1f5f4b1cbcac8 (diff) | |
download | glibc-ba8539473296645ef5e710e506534682f9eb5572.zip glibc-ba8539473296645ef5e710e506534682f9eb5572.tar.gz glibc-ba8539473296645ef5e710e506534682f9eb5572.tar.bz2 |
Only defined DEV_BSIZE if not already defined.
Diffstat (limited to 'misc/sys')
-rw-r--r-- | misc/sys/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/sys/param.h b/misc/sys/param.h index 5e6353d..d257ec7 100644 --- a/misc/sys/param.h +++ b/misc/sys/param.h @@ -71,7 +71,9 @@ /* Unit of `st_blocks'. */ -#define DEV_BSIZE 512 +#ifndef DEV_BSIZE +# define DEV_BSIZE 512 +#endif /* Bit map related macros. */ |