Plan 9 from Bell Labs’s /usr/web/sources/contrib/uriel/changes/2007/0412/21

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


EOF
 [jmk] --rw-rw-r-- M 59 glenda sys 2844 Apr 12 20:41 power/include/u.h
	/n/sourcesdump/2007/0412/plan9/power/include/u.h:79,85 - 
	/n/sources/plan9/power/include/u.h:79,85
	  	USED(list)
	  #define va_arg(list, mode)\
	  	((sizeof(mode) == 1)?\
	- 		((mode*)(list += 4))[-1]:\
	+ 		((list += 4), (mode*)list)[-1]:\
	  	(sizeof(mode) == 2)?\
	- 		((mode*)(list += 4))[-1]:\
	- 		((mode*)(list += sizeof(mode)))[-1])
	+ 		((list += 4), (mode*)list)[-1]:\
	+ 		((list += sizeof(mode)), (mode*)list)[-1])


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.