blob: 0d17ae11668ffec2c4965898add6127363fd5716 [file] [log] [blame]
Jens Axboe4fee8092007-03-29 09:33:03 +02001#ifndef FIO_COMPILER_H
2#define FIO_COMPILER_H
3
4#if __GNUC__ >= 4
5#include "compiler-gcc4.h"
6#elif __GNUC == 3
7#include "compiler-gcc3.h"
8#else
9#error Compiler too old, need gcc at least gcc 3.x
10#endif
11
12#endif