mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
From the requestor:
"Could you do me a favor and fix sys_bsd.c to get the howmany() macro from <sys/param.h>, instead of <sys/types.h>? This will save me from having to worry about the unsync'd bits before making the change." Requested by: mike
This commit is contained in:
parent
7419815d60
commit
53889d70ff
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
|
|||
* (at least between 4.x and dos) which is used in telnet.c.
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/time.h>
|
||||
#include <errno.h>
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ static const char sccsid[] = "@(#)sys_bsd.c 8.4 (Berkeley) 5/30/95";
|
|||
* (at least between 4.x and dos) which is used in telnet.c.
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/time.h>
|
||||
#include <errno.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue