Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Not an optimization, but a programming aid, the warn_unused_result attribute instructs the compiler to generate a warning whenever the return value of a function is not stored or used in a conditional statement:
_ _attribute_ _ ((warn_unused_result)) int foo (void) { /* ... */ }