index
:
hence
master
Toy language for building digital circuits from atomic logical operations
David Phillips
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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