xref: /dragonfly/test/stress/fsstress/xfscompat.h (revision 8af44722)
1 /*
2  * $DragonFly: src/test/stress/fsstress/xfscompat.h,v 1.2 2007/05/12 21:46:49 swildner Exp $
3  */
4 #define MAXNAMELEN 1024
5 struct dioattr {
6 	int d_miniosz, d_maxiosz, d_mem;
7 };
8 
9 #ifndef __DragonFly__
10 #define MIN(a,b) ((a)<(b) ? (a):(b))
11 #define MAX(a,b) ((a)>(b) ? (a):(b))
12 #endif
13