1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Add a compatibility macro for FreeBSD-4.

This commit is contained in:
Hidetoshi Shimokawa 2003-10-31 04:58:03 +00:00
parent 7a1413f972
commit b2d0deb2ce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121780

View File

@ -330,6 +330,7 @@ extern devclass_t firewire_devclass;
#define BIO_READ B_READ
#define BIO_WRITE B_WRITE
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#endif
MALLOC_DECLARE(M_FW);