Don't try calling lsl when file is missing.
[splint-patched.git] / test / manual / rstring.c
blob4ca78cd34bbb38824a8103df8c45128e8882e21e
1 # include "rstring.h"
3 static rstring rstring_ref (rstring r)
4 {
5 r->refs++;
6 return r;
9 rstring rstring_first (rstring r1, rstring r2)
11 if (strcmp (r1->contents, r2->contents) < 0)
13 return r1;
15 else
17 return rstring_ref (r2);