]> andersk Git - splint.git/blame - test/functionmacro.c
noexpand always false.
[splint.git] / test / functionmacro.c
CommitLineData
5c2f3045 1#include <stdio.h>
2
3void 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
13int
14main()
15{
16 printf("hello from %s\n",
17 __FUNCTION__);
18 blah();
19}
This page took 0.352391 seconds and 5 git commands to generate.