Print this page
5261 libm should stop using synonyms.h


  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  24  */
  25 /*
  26  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  27  * Use is subject to license terms.
  28  */
  29 
  30 #include "fenv_synonyms.h"
  31 #include <elf.h>
  32 #include <stdio.h>
  33 #include <stdlib.h>
  34 #include <unistd.h>
  35 #include <fcntl.h>
  36 #include <procfs.h>
  37 #include <string.h>
  38 #include <sys/stat.h>
  39 
  40 #if defined(__sparcv9) || defined(__amd64)
  41 
  42 #define Elf_Ehdr        Elf64_Ehdr
  43 #define Elf_Phdr        Elf64_Phdr
  44 #define Elf_Shdr        Elf64_Shdr
  45 #define Elf_Sym         Elf64_Sym
  46 #define ELF_ST_BIND     ELF64_ST_BIND
  47 #define ELF_ST_TYPE     ELF64_ST_TYPE
  48 
  49 #else
  50 




  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  24  */
  25 /*
  26  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  27  * Use is subject to license terms.
  28  */
  29 

  30 #include <elf.h>
  31 #include <stdio.h>
  32 #include <stdlib.h>
  33 #include <unistd.h>
  34 #include <fcntl.h>
  35 #include <procfs.h>
  36 #include <string.h>
  37 #include <sys/stat.h>
  38 
  39 #if defined(__sparcv9) || defined(__amd64)
  40 
  41 #define Elf_Ehdr        Elf64_Ehdr
  42 #define Elf_Phdr        Elf64_Phdr
  43 #define Elf_Shdr        Elf64_Shdr
  44 #define Elf_Sym         Elf64_Sym
  45 #define ELF_ST_BIND     ELF64_ST_BIND
  46 #define ELF_ST_TYPE     ELF64_ST_TYPE
  47 
  48 #else
  49