Changes in uspace/lib/c/include/ipc/nil.h [774e6d1a:f5a3479] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/nil.h
r774e6d1a rf5a3479 77 77 78 78 /** Return the protocol service message parameter. */ 79 #define NIL_GET_PROTO(call) ((services_t) IPC_GET_ARG2(call)) 79 #define NIL_GET_PROTO(call) \ 80 ({ \ 81 services_t service = (services_t) IPC_GET_ARG2(*call); \ 82 service; \ 83 }) 80 84 81 85 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.