This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / gnu / lib / libg++ / libg++ / swap.h
/* From Ron Guillmette; apparently needed for Hansen's code */
#define swap(a,b) ({ typeof(a) temp = (a); (a) = (b); (b) = temp; })