2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-13 23:01:31 +00:00

define __nonnull

This commit is contained in:
Holger Lubitz 2007-08-02 01:01:01 +02:00
parent d0d044443d
commit e3d10ac673

View File

@ -291,6 +291,13 @@ extern void dbg_hex_dump_da ( unsigned long dispaddr,
*/
#define __const __attribute__ (( const ))
/**
* Declare a function's pointer parameters as non-null - i.e. force
* compiler to check pointers at compile time and enable possible
* optimizations based on that fact
*/
#define __nonnull __attribute__ (( nonnull ))
/**
* Declare a function as used.
*