diff options
author | mike <mike@FreeBSD.org> | 2002-09-26 16:50:51 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-09-26 16:50:51 +0000 |
commit | dcca44bfc707abc9fd5e2c574396a244cf4ff16c (patch) | |
tree | 976152e1366c7cf26b2bfd6d9975633c96b7e1be /sys | |
parent | 9eadc243239337fab9d26c066c61baac52e86580 (diff) | |
download | FreeBSD-src-dcca44bfc707abc9fd5e2c574396a244cf4ff16c.zip FreeBSD-src-dcca44bfc707abc9fd5e2c574396a244cf4ff16c.tar.gz |
Remove NBBY and howmany() macros.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/types.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/sys/types.h b/sys/sys/types.h index bd656de..a669c13 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -263,14 +263,6 @@ typedef __timer_t timer_t; #include <sys/select.h> -/* XXX should be moved to <sys/param.h>. */ -#define NBBY 8 /* number of bits in a byte */ - -/* XXX should be removed, since <sys/param.h> has this. */ -#ifndef howmany -#define howmany(x, y) (((x) + ((y) - 1U)) / (y)) -#endif - /* * These declarations belong elsewhere, but are repeated here and in * <stdio.h> to give broken programs a better chance of working with |