]> andersk Git - splint.git/blob - test/tests2.2a/addassign.c
Remove unused cpplib_createDefinition.
[splint.git] / test / tests2.2a / addassign.c
1 int hash (char *name)
2 {
3   int h = 0;
4   
5   while (*name != '\0') 
6     {
7       h += *name++; /* error in 2.1b */
8     }
9
10   return h % 137;
11 }
This page took 0.81027 seconds and 5 git commands to generate.