Merge from vendor branch TCPDUMP:
[dragonfly.git] / test / stress / fsstress / xfscompat.h
1 /*
2  * $DragonFly: src/test/stress/fsstress/xfscompat.h,v 1.1 2004/05/07 17:51:02 dillon Exp $
3  */
4 #define MAXNAMELEN 1024
5 struct dioattr {
6         int d_miniosz, d_maxiosz, d_mem;
7 }; 
8
9 #ifndef __FreeBSD__
10 #define MIN(a,b) ((a)<(b) ? (a):(b))
11 #define MAX(a,b) ((a)>(b) ? (a):(b))
12 #endif