projects
/
fio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Remove comment wrt sigaction() usage, it's deprecated
[fio.git]
/
compiler
/
compiler.h
1
#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
#ifndef __must_check
13
#define __must_check
14
#endif
15
16
#endif