** If pointer 'p' points to 'o', move it to the next element. */
| 987 | ** If pointer 'p' points to 'o', move it to the next element. |
| 988 | */ |
| 989 | static void checkpointer (GCObject **p, GCObject *o) { |
| 990 | if (o == *p) |
| 991 | *p = o->next; |
| 992 | } |
| 993 | |
| 994 | |
| 995 | /* |