** If pointer 'p' points to 'o', move it to the next element. */
| 1044 | ** If pointer 'p' points to 'o', move it to the next element. |
| 1045 | */ |
| 1046 | static void checkpointer (GCObject **p, GCObject *o) { |
| 1047 | if (o == *p) |
| 1048 | *p = o->next; |
| 1049 | } |
| 1050 | |
| 1051 | |
| 1052 | /* |