Update TODO list
[trut64.git] / avr / common.h
blob8f0a7d3ea37bd6baa4c5a66fdbfe2472e08e02e3
1 /*
2 * Copyright (C) 2007 Anton Blad
3 * Copyright (C) 2007 Fredrik Kuivinen
4 * Copyright (C) 2007 Jakob Rosén
6 * This file is licensed under GPL v2.
7 */
9 #ifndef COMMON_H
10 #define COMMON_H
12 #define min(x, y) (x < y ? x : y)
13 #define max(x, y) (x > y ? x : y)
15 #endif