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
Fixed IRQ and FIQ handler.
[tart.git]
/
include
/
compiler.h
blob
6dbc5efbf27eb568d8733fdd39eda1e88f4e7490
1
#ifndef _COMPILER_H
2
#define _COMPILER_H
3
4
#ifdef __GNUC__
5
#define __PACKED __attribute__ ((packed))
6
#define __UNUSED __attribute__ ((unused))
7
#else
8
#error Compiler not supported.
9
#endif
10
11
#endif
/* _COMPILER_H */