Some consistency changes to library & headers flags.
[splint-patched.git] / test / tests2.5 / immutable.c
blob76a698e3866aff17546d5767c4a915a54313b2d7
1 # include "immutable.h"
3 immutable immutable_create (int x)
5 immutable res = (immutable) malloc (sizeof (*res));
7 res->x = x;
8 return res;