repo.or.cz
/
tart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added bits/wordsize.h.
[tart.git]
/
include
/
compiler.h
blob
6a0827827c4940169484a9b26695c475501a7c33
1
#ifndef _COMPILER_H
2
#define _COMPILER_H
3
4
#ifdef __GNUC__
5
#define __PACKED __attribute__ ((packed))
6
#define __UNUSED __attribute__ ((unused))
7
#define __ALIGNED(x) __attribute__ ((aligned (x)))
8
#else
9
#error Compiler not supported.
10
#endif
11
12
#endif
/* _COMPILER_H */