diff options
-rw-r--r-- | gl/lib/randread.c | 12 | ||||
-rw-r--r-- | gl/lib/selinux-at.c | 5 |
2 files changed, 2 insertions, 15 deletions
diff --git a/gl/lib/randread.c b/gl/lib/randread.c index 8dfb899a9..b81a4510b 100644 --- a/gl/lib/randread.c +++ b/gl/lib/randread.c @@ -1,6 +1,6 @@ /* Generate buffers of random data. - Copyright (C) 2006, 2008 Free Software Foundation, Inc. + Copyright (C) 2006, 2008-2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -43,16 +43,6 @@ # define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif -#ifndef __attribute__ -# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) -# define __attribute__(x) -# endif -#endif - -#ifndef ATTRIBUTE_UNUSED -# define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) -#endif - #if _STRING_ARCH_unaligned # define ALIGNED_POINTER(ptr, type) true #else diff --git a/gl/lib/selinux-at.c b/gl/lib/selinux-at.c index 0d94a0411..18e6b0f40 100644 --- a/gl/lib/selinux-at.c +++ b/gl/lib/selinux-at.c @@ -1,5 +1,5 @@ /* openat-style fd-relative functions for SE Linux - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,9 +29,6 @@ #include "dirname.h" /* solely for definition of IS_ABSOLUTE_FILE_NAME */ #include "save-cwd.h" -#include "gettext.h" -#define _(msgid) gettext (msgid) - #include "openat-priv.h" #define AT_FUNC_NAME getfileconat |