aboutsummaryrefslogtreecommitdiff
path: root/include/nullable.h
blob: f84100b8395acc9195e783276e49ec30f9484134 (plain)
1
2
3
4
5
6
7
8
9
#ifndef AMAL_NULLABLE_H
#define AMAL_NULLABLE_H

struct __nullable_type_dummy{ int _; };

/* Used by static analysis tool to find null-pointer dereference errors */
#define nullable

#endif