* Make a rectangle empty */
| 71 | * Make a rectangle empty |
| 72 | */ |
| 73 | static void |
| 74 | empty_rect(Rect *r) |
| 75 | { |
| 76 | r->right = -20000; |
| 77 | r->left = 20000; |
| 78 | r->top = 20000; |
| 79 | r->bottom = -20000; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Union twp rect together |
no outgoing calls
no test coverage detected