Free the components of the given keyword set. */
| 807 | |
| 808 | /* Free the components of the given keyword set. */ |
| 809 | void |
| 810 | kwsfree (kwset_t kws) |
| 811 | { |
| 812 | struct kwset *kwset; |
| 813 | |
| 814 | kwset = (struct kwset *) kws; |
| 815 | obstack_free(&kwset->obstack, NULL); |
| 816 | free(kws); |
| 817 | } |
no test coverage detected