From: Ulrich Drepper Date: Sun, 27 Aug 2000 16:54:09 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~24688 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48bde9c35cdc95ea6320fdda97b3e64c0ee933fd;p=external%2Fglibc.git Update. 2000-08-27 Ulrich Drepper * sysdeps/unix/sysv/linux/i386/sys/io.h (outw): Fix __INLINE -> __inline. --- diff --git a/ChangeLog b/ChangeLog index 795ac0a..d9c1a71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-27 Ulrich Drepper + + * sysdeps/unix/sysv/linux/i386/sys/io.h (outw): Fix __INLINE -> + __inline. + 2000-08-26 Ulrich Drepper * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Add getdents64 diff --git a/sysdeps/unix/sysv/linux/i386/sys/io.h b/sysdeps/unix/sysv/linux/i386/sys/io.h index be5b4f9..af5ab08 100644 --- a/sysdeps/unix/sysv/linux/i386/sys/io.h +++ b/sysdeps/unix/sysv/linux/i386/sys/io.h @@ -106,8 +106,8 @@ outb_p (unsigned char value, unsigned short int port) "Nd" (port)); } -static __INLINE void -outw (unsigned short value, unsigned short int port) +static __inline void +outw (unsigned short int value, unsigned short int port) { __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port));