Add diclaimer of copyright to _osname() manual page.
[unix-history] / gnu / lib / libg++ / g++-include / swap.h
CommitLineData
15637ed4
RG
1/* From Ron Guillmette; apparently needed for Hansen's code */
2
3#define swap(a,b) ({ typeof(a) temp = (a); (a) = (b); (b) = temp; })