summaryrefslogtreecommitdiff
path: root/common.h
blob: e5c0ab42d2133f5ad6fc97503e18ca56c615eb17 (plain)
1
2
3
4
5
6
#ifndef COMMON_H
#define COMMON_H

#define MIN(a, b) (((a) < (b)) ? (a) : (b))

#endif