repo.or.cz
/
trut64.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update TODO list
[trut64.git]
/
avr
/
common.h
blob
8f0a7d3ea37bd6baa4c5a66fdbfe2472e08e02e3
1
/*
2
* Copyright (C) 2007 Anton Blad
3
* Copyright (C) 2007 Fredrik Kuivinen
4
* Copyright (C) 2007 Jakob Rosén
5
*
6
* This file is licensed under GPL v2.
7
*/
8
9
#ifndef COMMON_H
10
#define COMMON_H
11
12
#define min(x, y) (x < y ? x : y)
13
#define max(x, y) (x > y ? x : y)
14
15
#endif