| # | Line 5 | Line 5 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 5 | * 3D warping routines. | |
| 6 | */ | |
| 7 | ||
| 8 | – | #include <stdio.h> |
| 8 | #include <stdlib.h> | |
| 9 | #include <math.h> | |
| 10 | ||
| # | Line 365 | Line 364 | free3dw( /* free WARP3D data */ | |
| 364 | ||
| 365 | static unsigned long | |
| 366 | gridhash( /* hash a grid point index */ | |
| 367 | < | const void *gp |
| 367 | > | const char *gp |
| 368 | ) | |
| 369 | { | |
| 370 | return(((unsigned long)((const unsigned char*)gp)[0]<<GNBITS | ((const unsigned char*)gp)[1])<<GNBITS | ((const unsigned char*)gp)[2]); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |