]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/comp_parse.c
ncurses 6.1 - patch 20180407
[ncurses.git] / ncurses / tinfo / comp_parse.c
1 /****************************************************************************
2  * Copyright (c) 1998-2017,2018 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /*
36  *      comp_parse.c -- parser driver loop and use handling.
37  *
38  *      Use this code by calling _nc_read_entry_source() on as many source
39  *      files as you like (either terminfo or termcap syntax).  If you
40  *      want use-resolution, call _nc_resolve_uses2().  To free the list
41  *      storage, do _nc_free_entries().
42  */
43
44 #include <curses.priv.h>
45
46 #include <ctype.h>
47
48 #include <tic.h>
49
50 MODULE_ID("$Id: comp_parse.c,v 1.101 2018/02/24 22:33:40 tom Exp $")
51
52 static void sanity_check2(TERMTYPE2 *, bool);
53 NCURSES_IMPEXP void NCURSES_API(*_nc_check_termtype2) (TERMTYPE2 *, bool) = sanity_check2;
54
55 static void fixup_acsc(TERMTYPE2 *, int);
56
57 static void
58 enqueue(ENTRY * ep)
59 /* add an entry to the in-core list */
60 {
61     ENTRY *newp = _nc_copy_entry(ep);
62
63     if (newp == 0)
64         _nc_err_abort(MSG_NO_MEMORY);
65
66     newp->last = _nc_tail;
67     _nc_tail = newp;
68
69     newp->next = 0;
70     if (newp->last)
71         newp->last->next = newp;
72 }
73
74 #define NAMEBUFFER_SIZE (MAX_NAME_SIZE + 2)
75
76 static char *
77 force_bar(char *dst, char *src)
78 {
79     if (strchr(src, '|') == 0) {
80         size_t len = strlen(src);
81         if (len > MAX_NAME_SIZE)
82             len = MAX_NAME_SIZE;
83         _nc_STRNCPY(dst, src, len);
84         _nc_STRCPY(dst + len, "|", NAMEBUFFER_SIZE - len);
85         src = dst;
86     }
87     return src;
88 }
89 #define ForceBar(dst, src) ((strchr(src, '|') == 0) ? force_bar(dst, src) : src)
90
91 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
92 static char *
93 skip_index(char *name)
94 {
95     char *bar = strchr(name, '|');
96
97     if (bar != 0 && (bar - name) == 2)
98         name = bar + 1;
99
100     return name;
101 }
102 #endif
103
104 static bool
105 check_collisions(char *n1, char *n2, int counter)
106 {
107     char *pstart, *qstart, *pend, *qend;
108     char nc1[NAMEBUFFER_SIZE];
109     char nc2[NAMEBUFFER_SIZE];
110
111     n1 = ForceBar(nc1, n1);
112     n2 = ForceBar(nc2, n2);
113
114 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
115     if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
116         n1 = skip_index(n1);
117         n2 = skip_index(n2);
118     }
119 #endif
120
121     for (pstart = n1; (pend = strchr(pstart, '|')); pstart = pend + 1) {
122         for (qstart = n2; (qend = strchr(qstart, '|')); qstart = qend + 1) {
123             if ((pend - pstart == qend - qstart)
124                 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) {
125                 if (counter > 0)
126                     (void) fprintf(stderr, "Name collision '%.*s' between\n",
127                                    (int) (pend - pstart), pstart);
128                 return (TRUE);
129             }
130         }
131     }
132
133     return (FALSE);
134 }
135
136 static char *
137 next_name(char *name)
138 {
139     if (*name != '\0')
140         ++name;
141     return name;
142 }
143
144 static char *
145 name_ending(char *name)
146 {
147     if (*name == '\0') {
148         name = 0;
149     } else {
150         while (*name != '\0' && *name != '|')
151             ++name;
152     }
153     return name;
154 }
155
156 /*
157  * Essentially, find the conflict reported in check_collisions() and remove
158  * it from the second name, unless that happens to be the last alias.
159  */
160 static bool
161 remove_collision(char *n1, char *n2)
162 {
163     char *p2 = n2;
164     char *pstart, *qstart, *pend, *qend;
165     bool removed = FALSE;
166
167 #if NCURSES_USE_TERMCAP && NCURSES_XNAMES
168     if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
169         n1 = skip_index(n1);
170         p2 = n2 = skip_index(n2);
171     }
172 #endif
173
174     for (pstart = n1; (pend = name_ending(pstart)); pstart = next_name(pend)) {
175         for (qstart = n2; (qend = name_ending(qstart)); qstart = next_name(qend)) {
176             if ((pend - pstart == qend - qstart)
177                 && memcmp(pstart, qstart, (size_t) (pend - pstart)) == 0) {
178                 if (qstart != p2 || *qend == '|') {
179                     if (*qend == '|')
180                         ++qend;
181                     while ((*qstart++ = *qend++) != '\0') ;
182                     fprintf(stderr, "...now\t%s\n", p2);
183                 } else {
184                     fprintf(stderr, "Cannot remove alias '%.*s'\n",
185                             (int) (qend - qstart), qstart);
186                 }
187                 removed = TRUE;
188                 break;
189             }
190         }
191     }
192
193     return removed;
194 }
195
196 /* do any of the aliases in a pair of terminal names match? */
197 NCURSES_EXPORT(bool)
198 _nc_entry_match(char *n1, char *n2)
199 {
200     return check_collisions(n1, n2, 0);
201 }
202
203 /****************************************************************************
204  *
205  * Entry compiler and resolution logic
206  *
207  ****************************************************************************/
208
209 NCURSES_EXPORT(void)
210 _nc_read_entry_source(FILE *fp, char *buf,
211                       int literal, bool silent,
212                       bool(*hook) (ENTRY *))
213 /* slurp all entries in the given file into core */
214 {
215     ENTRY thisentry;
216     bool oldsuppress = _nc_suppress_warnings;
217     int immediate = 0;
218
219     if (silent)
220         _nc_suppress_warnings = TRUE;   /* shut the lexer up, too */
221
222     _nc_reset_input(fp, buf);
223     for (;;) {
224         memset(&thisentry, 0, sizeof(thisentry));
225         if (_nc_parse_entry(&thisentry, literal, silent) == ERR)
226             break;
227         if (!isalnum(UChar(thisentry.tterm.term_names[0])))
228             _nc_err_abort("terminal names must start with letter or digit");
229
230         /*
231          * This can be used for immediate compilation of entries with no "use="
232          * references to disk.  That avoids consuming a lot of memory when the
233          * resolution code could fetch entries off disk.
234          */
235         if (hook != NULLHOOK && (*hook) (&thisentry)) {
236             immediate++;
237         } else {
238             enqueue(&thisentry);
239             /*
240              * The enqueued entry is copied with _nc_copy_termtype(), so we can
241              * free some of the data from thisentry, i.e., the arrays.
242              */
243             FreeIfNeeded(thisentry.tterm.Booleans);
244             FreeIfNeeded(thisentry.tterm.Numbers);
245             FreeIfNeeded(thisentry.tterm.Strings);
246 #if NCURSES_XNAMES
247             FreeIfNeeded(thisentry.tterm.ext_Names);
248 #endif
249         }
250     }
251
252     if (_nc_tail) {
253         /* set up the head pointer */
254         for (_nc_head = _nc_tail; _nc_head->last; _nc_head = _nc_head->last)
255             continue;
256
257         DEBUG(1, ("head = %s", _nc_head->tterm.term_names));
258         DEBUG(1, ("tail = %s", _nc_tail->tterm.term_names));
259     }
260 #ifdef TRACE
261     else if (!immediate)
262         DEBUG(1, ("no entries parsed"));
263 #endif
264
265     _nc_suppress_warnings = oldsuppress;
266 }
267
268 #if NCURSES_XNAMES
269 static unsigned
270 find_capname(TERMTYPE2 *p, const char *name)
271 {
272     unsigned num_names = NUM_EXT_NAMES(p);
273     unsigned n;
274     for (n = 0; n < num_names; ++n) {
275         if (!strcmp(p->ext_Names[n], name))
276             break;
277     }
278     return n;
279 }
280
281 static int
282 extended_captype(TERMTYPE2 *p, unsigned which)
283 {
284     int result = UNDEF;
285     unsigned limit = 0;
286     limit += p->ext_Booleans;
287     if (limit != 0 && which < limit) {
288         result = BOOLEAN;
289     } else {
290         limit += p->ext_Numbers;
291         if (limit != 0 && which < limit) {
292             result = NUMBER;
293         } else {
294             limit += p->ext_Strings;
295             if (limit != 0 && which < limit) {
296                 result = STRING;
297             } else if (which >= limit) {
298                 result = CANCEL;
299             }
300         }
301     }
302     return result;
303 }
304
305 static const char *
306 name_of_captype(int which)
307 {
308     const char *result = "?";
309     switch (which) {
310     case BOOLEAN:
311         result = "boolean";
312         break;
313     case NUMBER:
314         result = "number";
315         break;
316     case STRING:
317         result = "string";
318         break;
319     }
320     return result;
321 }
322
323 /*
324  * Disallow changing the type of an extended capability when doing a "use"
325  * if one or the other is a string.
326  */
327 static int
328 invalid_merge(TERMTYPE2 *to, TERMTYPE2 *from)
329 {
330     int rc = FALSE;
331     char *to_name = _nc_first_name(to->term_names);
332     char *from_name = strdup(_nc_first_name(from->term_names));
333     unsigned num_names = NUM_EXT_NAMES(from);
334     unsigned n;
335
336     for (n = 0; n < num_names; ++n) {
337         const char *capname = from->ext_Names[n];
338         int tt = extended_captype(to, find_capname(to, capname));
339         int tf = extended_captype(from, n);
340
341         if (tt <= STRING
342             && tf <= STRING
343             && (tt == STRING) != (tf == STRING)) {
344             if (from_name != 0 && strcmp(to_name, from_name)) {
345                 DEBUG(2,
346                       ("merge of %s to %s changes type of %s from %s to %s",
347                        from_name,
348                        to_name,
349                        from->ext_Names[n],
350                        name_of_captype(tf),
351                        name_of_captype(tt)));
352             } else {
353                 DEBUG(2, ("merge of %s changes type of %s from %s to %s",
354                           to_name,
355                           from->ext_Names[n],
356                           name_of_captype(tf),
357                           name_of_captype(tt)));
358             }
359             _nc_warning("merge changes type of %s from %s to %s",
360                         from->ext_Names[n],
361                         name_of_captype(tf),
362                         name_of_captype(tt));
363             rc = TRUE;
364         }
365     }
366     free(from_name);
367     return rc;
368 }
369 #define validate_merge(p, q) \
370         if (invalid_merge(&((p)->tterm), &((q)->tterm))) \
371                 return FALSE
372 #else
373 #define validate_merge(p, q)    /* nothing */
374 #endif
375
376 NCURSES_EXPORT(int)
377 _nc_resolve_uses2(bool fullresolve, bool literal)
378 /* try to resolve all use capabilities */
379 {
380     ENTRY *qp, *rp, *lastread = 0;
381     bool keepgoing;
382     unsigned i;
383     int unresolved, total_unresolved, multiples;
384
385     DEBUG(2, ("RESOLUTION BEGINNING"));
386
387     /*
388      * Check for multiple occurrences of the same name.
389      */
390     multiples = 0;
391     for_entry_list(qp) {
392         int matchcount = 0;
393
394         for_entry_list(rp) {
395             if (qp > rp
396                 && check_collisions(qp->tterm.term_names,
397                                     rp->tterm.term_names,
398                                     matchcount + 1)) {
399                 if (!matchcount++) {
400                     (void) fprintf(stderr, "\t%s\n", rp->tterm.term_names);
401                 }
402                 (void) fprintf(stderr, "and\t%s\n", qp->tterm.term_names);
403                 if (!remove_collision(rp->tterm.term_names,
404                                       qp->tterm.term_names)) {
405                     ++multiples;
406                 }
407             }
408         }
409     }
410     if (multiples > 0)
411         return (FALSE);
412
413     DEBUG(2, ("NO MULTIPLE NAME OCCURRENCES"));
414
415     /*
416      * First resolution stage: compute link pointers corresponding to names.
417      */
418     total_unresolved = 0;
419     _nc_curr_col = -1;
420     for_entry_list(qp) {
421         unresolved = 0;
422         for (i = 0; i < qp->nuses; i++) {
423             bool foundit;
424             char *child = _nc_first_name(qp->tterm.term_names);
425             char *lookfor = qp->uses[i].name;
426             long lookline = qp->uses[i].line;
427
428             foundit = FALSE;
429
430             _nc_set_type(child);
431
432             /* first, try to resolve from in-core records */
433             for_entry_list(rp) {
434                 if (rp != qp
435                     && _nc_name_match(rp->tterm.term_names, lookfor, "|")) {
436                     DEBUG(2, ("%s: resolving use=%s (in core)",
437                               child, lookfor));
438
439                     qp->uses[i].link = rp;
440                     foundit = TRUE;
441                 }
442             }
443
444             /* if that didn't work, try to merge in a compiled entry */
445             if (!foundit) {
446                 TERMTYPE2 thisterm;
447                 char filename[PATH_MAX];
448
449                 memset(&thisterm, 0, sizeof(thisterm));
450                 if (_nc_read_entry2(lookfor, filename, &thisterm) == 1) {
451                     DEBUG(2, ("%s: resolving use=%s (compiled)",
452                               child, lookfor));
453
454                     TYPE_MALLOC(ENTRY, 1, rp);
455                     rp->tterm = thisterm;
456                     rp->nuses = 0;
457                     rp->next = lastread;
458                     lastread = rp;
459
460                     qp->uses[i].link = rp;
461                     foundit = TRUE;
462                 }
463             }
464
465             /* no good, mark this one unresolvable and complain */
466             if (!foundit) {
467                 unresolved++;
468                 total_unresolved++;
469
470                 _nc_curr_line = (int) lookline;
471                 _nc_warning("resolution of use=%s failed", lookfor);
472                 qp->uses[i].link = 0;
473             }
474         }
475     }
476     if (total_unresolved) {
477         /* free entries read in off disk */
478         _nc_free_entries(lastread);
479         return (FALSE);
480     }
481
482     DEBUG(2, ("NAME RESOLUTION COMPLETED OK"));
483
484     /*
485      * OK, at this point all (char *) references in `name' members
486      * have been successfully converted to (ENTRY *) pointers in
487      * `link' members.  Time to do the actual merges.
488      */
489     if (fullresolve) {
490         do {
491             ENTRY merged;
492
493             keepgoing = FALSE;
494
495             for_entry_list(qp) {
496                 if (qp->nuses > 0) {
497                     DEBUG(2, ("%s: attempting merge",
498                               _nc_first_name(qp->tterm.term_names)));
499                     /*
500                      * If any of the use entries we're looking for is
501                      * incomplete, punt.  We'll catch this entry on a
502                      * subsequent pass.
503                      */
504                     for (i = 0; i < qp->nuses; i++)
505                         if (qp->uses[i].link->nuses) {
506                             DEBUG(2, ("%s: use entry %d unresolved",
507                                       _nc_first_name(qp->tterm.term_names), i));
508                             goto incomplete;
509                         }
510
511                     /*
512                      * First, make sure there is no garbage in the
513                      * merge block.  As a side effect, copy into
514                      * the merged entry the name field and string
515                      * table pointer.
516                      */
517                     _nc_copy_termtype2(&(merged.tterm), &(qp->tterm));
518
519                     /*
520                      * Now merge in each use entry in the proper
521                      * (reverse) order.
522                      */
523                     for (; qp->nuses; qp->nuses--) {
524                         validate_merge(&merged,
525                                        qp->uses[qp->nuses - 1].link);
526                         _nc_merge_entry(&merged,
527                                         qp->uses[qp->nuses - 1].link);
528                     }
529
530                     /*
531                      * Now merge in the original entry.
532                      */
533                     validate_merge(&merged, qp);
534                     _nc_merge_entry(&merged, qp);
535
536                     /*
537                      * Replace the original entry with the merged one.
538                      */
539                     FreeIfNeeded(qp->tterm.Booleans);
540                     FreeIfNeeded(qp->tterm.Numbers);
541                     FreeIfNeeded(qp->tterm.Strings);
542 #if NCURSES_XNAMES
543                     FreeIfNeeded(qp->tterm.ext_Names);
544 #endif
545                     qp->tterm = merged.tterm;
546                     _nc_wrap_entry(qp, TRUE);
547
548                     /*
549                      * We know every entry is resolvable because name resolution
550                      * didn't bomb.  So go back for another pass.
551                      */
552                     /* FALLTHRU */
553                   incomplete:
554                     keepgoing = TRUE;
555                 }
556             }
557         } while
558             (keepgoing);
559
560         DEBUG(2, ("MERGES COMPLETED OK"));
561     }
562
563     /*
564      * We'd like to free entries read in off disk at this point, but can't.
565      * The merge_entry() code doesn't copy the strings in the use entries,
566      * it just aliases them.  If this ever changes, do a
567      * free_entries(lastread) here.
568      */
569
570     DEBUG(2, ("RESOLUTION FINISHED"));
571
572     if (fullresolve) {
573         _nc_curr_col = -1;
574         for_entry_list(qp) {
575             _nc_curr_line = (int) qp->startline;
576             _nc_set_type(_nc_first_name(qp->tterm.term_names));
577             /*
578              * tic overrides this function pointer to provide more verbose
579              * checking.
580              */
581             if (_nc_check_termtype2 != sanity_check2) {
582                 SCREEN *save_SP = SP;
583                 SCREEN fake_sp;
584                 TERMINAL fake_tm;
585                 TERMINAL *save_tm = cur_term;
586
587                 /*
588                  * Setup so that tic can use ordinary terminfo interface to
589                  * obtain capability information.
590                  */
591                 memset(&fake_sp, 0, sizeof(fake_sp));
592                 memset(&fake_tm, 0, sizeof(fake_tm));
593                 fake_sp._term = &fake_tm;
594                 TerminalType(&fake_tm) = qp->tterm;
595                 _nc_set_screen(&fake_sp);
596                 set_curterm(&fake_tm);
597
598                 _nc_check_termtype2(&qp->tterm, literal);
599
600                 _nc_set_screen(save_SP);
601                 set_curterm(save_tm);
602             } else {
603                 fixup_acsc(&qp->tterm, literal);
604             }
605         }
606         DEBUG(2, ("SANITY CHECK FINISHED"));
607     }
608
609     return (TRUE);
610 }
611
612 /*
613  * This bit of legerdemain turns all the terminfo variable names into
614  * references to locations in the arrays Booleans, Numbers, and Strings ---
615  * precisely what's needed.
616  */
617
618 #undef CUR
619 #define CUR tp->
620
621 static void
622 fixup_acsc(TERMTYPE2 *tp, int literal)
623 {
624     if (!literal) {
625         if (acs_chars == ABSENT_STRING
626             && PRESENT(enter_alt_charset_mode)
627             && PRESENT(exit_alt_charset_mode))
628             acs_chars = strdup(VT_ACSC);
629     }
630 }
631
632 static void
633 sanity_check2(TERMTYPE2 *tp, bool literal)
634 {
635     if (!PRESENT(exit_attribute_mode)) {
636 #ifdef __UNUSED__               /* this casts too wide a net */
637         bool terminal_entry = !strchr(tp->term_names, '+');
638         if (terminal_entry &&
639             (PRESENT(set_attributes)
640              || PRESENT(enter_standout_mode)
641              || PRESENT(enter_underline_mode)
642              || PRESENT(enter_blink_mode)
643              || PRESENT(enter_bold_mode)
644              || PRESENT(enter_dim_mode)
645              || PRESENT(enter_secure_mode)
646              || PRESENT(enter_protected_mode)
647              || PRESENT(enter_reverse_mode)))
648             _nc_warning("no exit_attribute_mode");
649 #endif /* __UNUSED__ */
650         PAIRED(enter_standout_mode, exit_standout_mode);
651         PAIRED(enter_underline_mode, exit_underline_mode);
652 #if defined(enter_italics_mode) && defined(exit_italics_mode)
653         PAIRED(enter_italics_mode, exit_italics_mode);
654 #endif
655     }
656
657     /* we do this check/fix in postprocess_termcap(), but some packagers
658      * prefer to bypass it...
659      */
660     if (!literal) {
661         fixup_acsc(tp, literal);
662         ANDMISSING(enter_alt_charset_mode, acs_chars);
663         ANDMISSING(exit_alt_charset_mode, acs_chars);
664     }
665
666     /* listed in structure-member order of first argument */
667     PAIRED(enter_alt_charset_mode, exit_alt_charset_mode);
668     ANDMISSING(enter_blink_mode, exit_attribute_mode);
669     ANDMISSING(enter_bold_mode, exit_attribute_mode);
670     PAIRED(exit_ca_mode, enter_ca_mode);
671     PAIRED(enter_delete_mode, exit_delete_mode);
672     ANDMISSING(enter_dim_mode, exit_attribute_mode);
673     PAIRED(enter_insert_mode, exit_insert_mode);
674     ANDMISSING(enter_secure_mode, exit_attribute_mode);
675     ANDMISSING(enter_protected_mode, exit_attribute_mode);
676     ANDMISSING(enter_reverse_mode, exit_attribute_mode);
677     PAIRED(from_status_line, to_status_line);
678     PAIRED(meta_off, meta_on);
679
680     PAIRED(prtr_on, prtr_off);
681     PAIRED(save_cursor, restore_cursor);
682     PAIRED(enter_xon_mode, exit_xon_mode);
683     PAIRED(enter_am_mode, exit_am_mode);
684     ANDMISSING(label_off, label_on);
685 #if defined(display_clock) && defined(remove_clock)
686     PAIRED(display_clock, remove_clock);
687 #endif
688     ANDMISSING(set_color_pair, initialize_pair);
689 }
690
691 #if NO_LEAKS
692 NCURSES_EXPORT(void)
693 _nc_leaks_tic(void)
694 {
695     T((T_CALLED("_nc_free_tic()")));
696     _nc_globals.leak_checking = TRUE;
697     _nc_alloc_entry_leaks();
698     _nc_captoinfo_leaks();
699     _nc_comp_scan_leaks();
700 #if BROKEN_LINKER || USE_REENTRANT
701     _nc_names_leaks();
702     _nc_codes_leaks();
703 #endif
704     _nc_tic_expand(0, FALSE, 0);
705 }
706
707 NCURSES_EXPORT(void)
708 _nc_free_tic(int code)
709 {
710     _nc_leaks_tic();
711     _nc_free_tinfo(code);
712 }
713 #endif