]> andersk Git - splint.git/blame - test/unsignedcompare.c
Fixes for win32
[splint.git] / test / unsignedcompare.c
CommitLineData
68de3f33 1void test (int fd, void *buffer, size_t cnt)
2{
3 unsigned long res;
4
5 res = read(fd, buffer, cnt);
6
7 if (res <= 0)
8 {
9 printf ("You lose!");
10 }
11
12 if (res < 0 || res >= 0)
13 {
14 printf ("twice loser");
15 }
16}
This page took 0.074938 seconds and 5 git commands to generate.