| 89 | #define MYRAND_MAX 32767 |
| 90 | |
| 91 | static int myrand_r(unsigned long *pseed) |
| 92 | { |
| 93 | *pseed = *pseed * 1103515245 + 12345; |
| 94 | return ((unsigned)((*pseed / 65536UL) % (MYRAND_MAX + 1))); |
| 95 | } |
| 96 | |
| 97 | static void Check(GByte *pBuffer, int nXSize, int nYSize, int nBands, int nXOff, |
| 98 | int nYOff, int nXWin, int nYWin) |
no outgoing calls
no test coverage detected