This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Cleanup patch for <sys/io.h> on Alpha/Linux



Here's a patch to cleanup <sys/io.h>.

Andreas

2000-02-23  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/alpha/sys/io.h: Add missing ints.

============================================================
Index: sysdeps/unix/sysv/linux/alpha/sys/io.h
--- sysdeps/unix/sysv/linux/alpha/sys/io.h	2000/01/23 08:53:21	1.5
+++ sysdeps/unix/sysv/linux/alpha/sys/io.h	2000/02/23 07:57:20
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1999, 2000 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
@@ -65,12 +65,12 @@
 			    unsigned char *__buf) __THROW;
 
 /* Userspace declarations.  */
-extern unsigned int inb (unsigned long __port) __THROW;
-extern unsigned int inw (unsigned long __port) __THROW;
-extern unsigned int inl (unsigned long __port) __THROW;
-extern void outb (unsigned char __b, unsigned long __port) __THROW;
-extern void outw (unsigned short __w, unsigned long __port) __THROW;
-extern void outl (unsigned int __l, unsigned long __port) __THROW;
+extern unsigned int inb (unsigned long int __port) __THROW;
+extern unsigned int inw (unsigned long int __port) __THROW;
+extern unsigned int inl (unsigned long int __port) __THROW;
+extern void outb (unsigned char __b, unsigned long int __port) __THROW;
+extern void outw (unsigned short int __w, unsigned long int __port) __THROW;
+extern void outl (unsigned int __l, unsigned long int __port) __THROW;
 
 __END_DECLS
 

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.rhein-neckar.de

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]