Define howmany(). It seems to be what the BSDs are using. Linux
defines it, too. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24641 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
a7f6ff0ff8
commit
0fddf2f088
@ -28,6 +28,10 @@ typedef unsigned long fd_mask;
|
||||
# define _howmany(x, y) (((x) + ((y) - 1)) / (y))
|
||||
#endif
|
||||
|
||||
#ifndef howmany
|
||||
# define howmany(x, y) (((x) + ((y) - 1)) / (y))
|
||||
#endif
|
||||
|
||||
#define NFDBITS (sizeof(fd_mask) * 8) /* bits per mask */
|
||||
|
||||
typedef struct fd_set {
|
||||
|
Loading…
x
Reference in New Issue
Block a user