* sysdeps/arm/bits/link.h: Uglify function parameter names.

* sysdeps/unix/sysv/linux/arm/sys/io.h: Likewise.
	* sysdeps/arm/eabi/bits/setjmp.h: Uglify attribute name.
This commit is contained in:
Joseph Myers 2009-03-15 16:53:46 +00:00
parent 73ea734a9f
commit 440eb79d6c
4 changed files with 17 additions and 11 deletions

View File

@ -1,3 +1,9 @@
2009-03-15 Joseph Myers <joseph@codesourcery.com>
* sysdeps/arm/bits/link.h: Uglify function parameter names.
* sysdeps/unix/sysv/linux/arm/sys/io.h: Likewise.
* sysdeps/arm/eabi/bits/setjmp.h: Uglify attribute name.
2009-03-03 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Declare

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2005 Free Software Foundation, Inc.
/* Copyright (C) 2005, 2009 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -61,6 +61,6 @@ extern unsigned int la_arm_gnu_pltexit (Elf32_Sym *__sym, unsigned int __ndx,
uintptr_t *__defcook,
const La_arm_regs *__inregs,
La_arm_retval *__outregs,
const char *symname);
const char *__symname);
__END_DECLS

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
/* Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -32,7 +32,7 @@
recommends that the buffer contain 64 words. The first 28 words
are occupied by v1-v6, sl, fp, sp, pc, d8-d15, and fpscr. (Note
that d8-15 require 17 words, due to the use of fstmx.) */
typedef int __jmp_buf[64] __attribute__((aligned (8)));
typedef int __jmp_buf[64] __attribute__((__aligned__ (8)));
#endif
#endif

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1996, 1998, 1999 Free Software Foundation, Inc.
/* Copyright (C) 1996, 1998, 1999, 2009 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -35,13 +35,13 @@ extern int ioperm (unsigned long int __from, unsigned long int __num,
extern int iopl (int __level) __THROW;
/* The functions that actually perform reads and writes. */
extern unsigned char inb (unsigned long int port) __THROW;
extern unsigned short int inw (unsigned long int port) __THROW;
extern unsigned long int inl (unsigned long int port) __THROW;
extern unsigned char inb (unsigned long int __port) __THROW;
extern unsigned short int inw (unsigned long int __port) __THROW;
extern unsigned long int inl (unsigned long int __port) __THROW;
extern void outb (unsigned char value, unsigned long int port) __THROW;
extern void outw (unsigned short value, unsigned long int port) __THROW;
extern void outl (unsigned long value, unsigned long int port) __THROW;
extern void outb (unsigned char __value, unsigned long int __port) __THROW;
extern void outw (unsigned short __value, unsigned long int __port) __THROW;
extern void outl (unsigned long __value, unsigned long int __port) __THROW;
__END_DECLS