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:
Mark Murray 2002-09-25 07:24:01 +00:00
parent 7419815d60
commit 53889d70ff
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103954
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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>