aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-27 16:54:09 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-27 16:54:09 +0000
commit48bde9c35cdc95ea6320fdda97b3e64c0ee933fd (patch)
tree55870775d3fb5b2378344e7c0e45c193edeafa5e /sysdeps/unix
parent6a72ae2124a27089a52d6e03cf00f38123be674d (diff)
downloadglibc-48bde9c35cdc95ea6320fdda97b3e64c0ee933fd.tar
glibc-48bde9c35cdc95ea6320fdda97b3e64c0ee933fd.tar.gz
glibc-48bde9c35cdc95ea6320fdda97b3e64c0ee933fd.tar.bz2
glibc-48bde9c35cdc95ea6320fdda97b3e64c0ee933fd.zip
Update.
2000-08-27 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/sys/io.h (outw): Fix __INLINE -> __inline.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/i386/sys/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sys/io.h b/sysdeps/unix/sysv/linux/i386/sys/io.h
index be5b4f9083..af5ab082c6 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));