0
我剛纔看到這個在bash的源:這是什麼解析?
/* Force gcc to not clobber X on a longjmp(). Old versions of gcc mangle
this badly. */
#if .......
# define USE_VAR(x) ((void) &(x))
.....
我的問題是什麼呢((void) &(x))
解析到?它在bash的main
使用如下:
.....
USE_VAR(argc);
USE_VAR(argv);
USE_VAR(env);
......