diff options
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal.h b/internal.h index 697ce4778..4a132abf1 100644 --- a/internal.h +++ b/internal.h | |||
@@ -297,4 +297,13 @@ int nfsmount(const char *spec, const char *node, unsigned long *flags, | |||
297 | #endif | 297 | #endif |
298 | 298 | ||
299 | 299 | ||
300 | #ifndef setbit | ||
301 | /* Bit map related macros -- libc5 doens't provide these... sigh. */ | ||
302 | #define NBBY CHAR_BIT | ||
303 | #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) | ||
304 | #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) | ||
305 | #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) | ||
306 | #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) | ||
307 | #endif | ||
308 | |||
300 | #endif /* _BB_INTERNAL_H_ */ | 309 | #endif /* _BB_INTERNAL_H_ */ |