blob: 961b21017c3df34fa6f2f4cc7e6d4a01bf720544 (
plain)
1
2
3
4
5
6
7
|
#ifndef AMAL_NULLABLE_H
#define AMAL_NULLABLE_H
/* Used by static analysis tool to find null-pointer dereference errors */
#define nullable __attribute__((annotate("nullable")))
#endif
|