Home | History | Annotate | Download | only in src

Lines Matching defs:version

7    modify it under the terms of the Open Software License version 1.0 as
12 License version 1.0 from http://www.opensource.org/licenses/osl.php or
49 static struct version *new_version (struct id_list *local,
51 static struct version *merge_versions (struct version *one,
52 struct version *two);
53 static void add_versions (struct version *versions);
69 struct version *version;
117 %type <version> versionlist
118 %type <version> version
119 %type <version> version_stmt_list
120 %type <version> version_stmt
359 versionlist: versionlist version
364 | version
368 version: '{' version_stmt_list '}' ';'
430 ? gettext ("while reading version script '%s': %s at line %d")
603 static struct version *
606 struct version *newp;
608 newp = (struct version *) obstack_alloc (&ld_state.smem, sizeof (*newp));
619 static struct version *
620 merge_versions (struct version *one, struct version *two)
676 /* There is already a version definition for this symbol. */
681 /* No version like this so far. */
696 symbol '%s' in declared both local and global for unnamed version")
698 version '%s'"),
703 /* This is the first version definition for this symbol. */
741 add_versions (struct version *versions)
743 struct version *lastp = versions;
755 struct version *oldp;