]> andersk Git - splint.git/blob - test/conditions/miroslaw.c
Fixed pre-processing bug reported by Adam Clarke. Moved marking point
[splint.git] / test / conditions / miroslaw.c
1 #include <stdlib.h>
2
3 typedef struct ipp_s *ipp;
4
5 struct ipp_s
6 {
7   /*@only@*/ /*@notnull@*/
8   int *ip;
9 };
10
11 extern void ipp_delete(/*@special@*/ /*@only@*/ /*@notnull@*/ ipp This) 
12   /*@releases *This@*/;
13
14 void ipp_delete(ipp This)
15 {
16   free(This);
17 }
This page took 0.068721 seconds and 5 git commands to generate.