]> andersk Git - splint.git/blob - test/functionmacro.c
noexpand always false.
[splint.git] / test / functionmacro.c
1 #include <stdio.h>
2
3 void blah()
4 {
5   int len;
6   
7   len = strlen(__FUNCTION__);
8   
9   printf("this function (%s) has a name that is %d characters long\n",
10          __FUNCTION__, len);
11 }
12
13 int
14 main()
15 {
16   printf("hello from %s\n",
17          __FUNCTION__);
18   blah();
19 }
This page took 0.073495 seconds and 5 git commands to generate.