Some consistency changes to library & headers flags.
[splint-patched.git] / test / outparam.lcl
blob050ecbc1f2eb79b6176db58d47ad7ac9d7534ceb
1 typedef struct _st { int a; int b; } *st;
3 void f(out int *a, int *b) { modifies *a; }
4 void h(out st s, out st t) { modifies *t; }
5 int g (void) { } 
7