]> git.saurik.com Git - bison.git/blobdiff - src/named-ref.c
Merge remote-tracking branch 'origin/maint'
[bison.git] / src / named-ref.c
index 4388acba88706f8106190164ee2050881fc27d15..bf7a3f77948703eebba6e67165f4959ad9b479f7 100644 (file)
@@ -1,6 +1,6 @@
 /* Named symbol references for Bison
 
-   Copyright 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2012 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -33,9 +33,14 @@ named_ref_new (uniqstr id, location loc)
   return res;
 }
 
+named_ref *
+named_ref_copy (const named_ref *r)
+{
+  return named_ref_new (r->id, r->loc);
+}
+
 void
 named_ref_free (named_ref *r)
 {
   free (r);
 }
-