diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-01-11 11:03:27 -0800 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-01-11 11:03:27 -0800 |
commit | 64c1f3af5d6176dd32285d2e02dc93713466f82f (patch) | |
tree | 774d82db9a89a35974b3a820379de12cca257a56 /sysdeps/unix/sysv/linux/ia64 | |
parent | 7b4715c5362319e1ff2f9555d17133146e16081a (diff) | |
download | glibc-64c1f3af5d6176dd32285d2e02dc93713466f82f.tar.gz glibc-64c1f3af5d6176dd32285d2e02dc93713466f82f.tar.xz glibc-64c1f3af5d6176dd32285d2e02dc93713466f82f.zip |
Fix double-inclusion problem of bits/stat.h.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/bits/stat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/stat.h b/sysdeps/unix/sysv/linux/ia64/bits/stat.h index 98dadf9984..86acd27ae2 100644 --- a/sysdeps/unix/sysv/linux/ia64/bits/stat.h +++ b/sysdeps/unix/sysv/linux/ia64/bits/stat.h @@ -20,6 +20,9 @@ # error "Never include <bits/stat.h> directly; use <sys/stat.h> instead." #endif +#ifndef _BITS_STAT_H +#define _BITS_STAT_H 1 + /* Versions of the `struct stat' data structure. */ #define _STAT_VER_KERNEL 0 #define _STAT_VER_LINUX 1 @@ -143,3 +146,5 @@ struct stat64 # define UTIME_NOW ((1l << 30) - 1l) # define UTIME_OMIT ((1l << 30) - 2l) #endif + +#endif /* bits//stat.h */ |