File: libcoltest.c

package info (click to toggle)
libfiu 1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: ansic: 2,633; python: 973; makefile: 599; sh: 309
file content (9 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
// A library that uses some of the same function names as libfiu.
// We use this to test function name collissions.

int called_wtable_get = 0;

void wtable_get(void)
{
	called_wtable_get++;
}