repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
lib
/
libg++
/
g++-include
/
swap.h
blob
005cb0e46482fbe38e33367f8261a47bb881688e
1
/* From Ron Guillmette; apparently needed for Hansen's code */
2
3
#define swap(a,b) ({ typeof(a) temp = (a); (a) = (b); (b) = temp; })