blob: 405cbd0c46c53d9db18769da5396fb416c44d06e (
plain)
1
2
3
4
5
6
7
8
9
|
typedef void VOID;
typedef VOID ALSO_VOID;
void this_api_returns_nothing(void);
VOID this_api_also_returns_nothing(VOID);
ALSO_VOID this_other_api_also_returns_nothing(ALSO_VOID);
|