]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 29 Sep 2003 22:23:14 +0000 (22:23 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 29 Sep 2003 22:23:14 +0000 (22:23 +0000)
2003-09-29  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __extension__ as
well to cover using long long in C90.

ChangeLog
nptl/TODO-kernel
sysdeps/unix/sysv/linux/sys/sysmacros.h

index 197b9828b99747dc14cf823bceebf122b8f18102..15dbd586d3ae76552595fdee7996d6461d918ed7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-29  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __extension__ as
+       well to cover using long long in C90.
+
 2003-09-28  Alfred M. Szmidt  <ams@kemisten.nu>
 
        * sysdeps/mach/hurd/bits/libc-lock.h (__libc_cleanup_pop):
index 7c16f8e1a47164bdfb2531432cf482ee98a8dc3e..ad6d2a4b51390cfff53a78c3071d013d20a1e840 100644 (file)
@@ -4,8 +4,6 @@
 
   + use UID/GID in access(2), chmod(2), chown(2), link(2)
 
-- pgrp & session are process properties
-
 - nice level is process property
 
 - rlimit should be process-wide and SIGXCPU should be sent if all threads
index a89944e6ead59a61792785742d1b6931b6b3726f..a9bfa78d3ef2b0623c8915e9aafc6b7b23347b9b 100644 (file)
    not going to hack weird hacks to support the dev_t representation
    they need.  */
 #ifdef __GLIBC_HAVE_LONG_LONG
+__extension__
 extern __inline unsigned int gnu_dev_major (unsigned long long int __dev)
      __THROW;
+__extension__
 extern __inline unsigned int gnu_dev_minor (unsigned long long int __dev)
      __THROW;
+__extension__
 extern __inline unsigned long long int gnu_dev_makedev (unsigned int __major,
-                                                     unsigned int __minor)
+                                                       unsigned int __minor)
      __THROW;
 
 # if defined __GNUC__ && __GNUC__ >= 2
-extern __inline unsigned int
+__extension__ extern __inline unsigned int
 gnu_dev_major (unsigned long long int __dev) __THROW
 {
   return ((__dev >> 8) & 0xfff) | ((unsigned int) (__dev >> 32) & ~0xfff);
 }
 
-extern __inline unsigned int
+__extension__ extern __inline unsigned int
 gnu_dev_minor (unsigned long long int __dev) __THROW
 {
   return (__dev & 0xff) | ((unsigned int) (__dev >> 12) & ~0xff);
 }
 
-extern __inline unsigned long long int
+__extension__ extern __inline unsigned long long int
 gnu_dev_makedev (unsigned int __major, unsigned int __minor) __THROW
 {
   return ((__minor & 0xff) | ((__major & 0xfff) << 8)
This page took 0.058434 seconds and 5 git commands to generate.