1 /* 2 3 Copyright (C) 2000,2004 Silicon Graphics, Inc. All Rights Reserved. 4 5 This program is free software; you can redistribute it and/or modify it 6 under the terms of version 2.1 of the GNU Lesser General Public License 7 as published by the Free Software Foundation. 8 9 This program is distributed in the hope that it would be useful, but 10 WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 12 13 Further, this software is distributed without any warranty that it is 14 free of the rightful claim of any third person regarding infringement 15 or the like. Any license provided herein, whether implied or 16 otherwise, applies only to this software file. Patent licenses, if 17 any, provided herein do not apply to combinations of this program with 18 other software, or any other product whatsoever. 19 20 You should have received a copy of the GNU Lesser General Public 21 License along with this program; if not, write the Free Software 22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301, 23 USA. 24 25 Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane, 26 Mountain View, CA 94043, or: 27 28 http://www.sgi.com 29 30 For further information regarding this notice, see: 31 32 http://oss.sgi.com/projects/GenInfo/NoticeExplan 33 34 */ 35 36 37 38 #include "config.h" 39 #include "libdwarfdefs.h" 40 #include <stdio.h> 41 #include <string.h> 42 #ifdef HAVE_ELFACCESS_H 43 #include <elfaccess.h> 44 #endif 45 #include "pro_incl.h" 46 #include "pro_section.h" 47 48 49 /* 50 This function adds another public name to the 51 list of public names for the given Dwarf_P_Debug. 52 It returns 0 on error, and 1 otherwise. 53 */ 54 55 Dwarf_Unsigned 56 dwarf_add_pubname(Dwarf_P_Debug dbg, 57 Dwarf_P_Die die, 58 char *pubname_name, Dwarf_Error * error) 59 { 60 return 61 _dwarf_add_simple_name_entry(dbg, die, pubname_name, 62 dwarf_snk_pubname, error); 63 } 64