Displaying 1 result from an estimated 1 matches for "external_sink_ret2_nrw".
2018 Aug 23
2
[RFC] "Properly" Derive Function/Argument/Parameter Attributes
...on, three of which
; are internal and three externally visible:
;
; static int* internal_ret0_nw(int *n0, int *w0);
; static int* internal_ret1_rw(int *r0, int *w0);
; static int* internal_ret1_rrw(int *r0, int *r1, int *w0);
; int* external_ret2_nrw(int *n0, int *r0, int *w0);
; int* external_sink_ret2_nrw(int *n0, int *r0, int *w0);
; int* external_source_ret2_nrw(int *n0, int *r0, int *w0);
;
; The top four functions call each other while the "sink" function will not
; call anything and the "source" function will not be called in this module.
; The names of the functions...