]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix M68K bits/stat.h double inclusion problem.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 11 Jan 2010 21:51:34 +0000 (21:51 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 11 Jan 2010 21:51:34 +0000 (21:51 +0000)
ChangeLog.m68k
sysdeps/unix/sysv/linux/m68k/bits/stat.h

index 094e7a8e7716935c2956ee74f504c9603cb508f5..cdc9242e4abe1ef72b52e0104566028b65803f79 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-11  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/m68k/bits/stat.h: Fix double-inclusion
+       problem.
+
 2010-01-10  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Define O_DIRECTORY,
index 771a53aa24e22e3aeb5cd45b4c3ce062585832ea..0c1d149d85a7f45b5198953024d4f581abded86a 100644 (file)
@@ -21,6 +21,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_LINUX_OLD    1
 #define _STAT_VER_KERNEL       1
@@ -167,3 +170,5 @@ struct stat64
 # define UTIME_NOW     ((1l << 30) - 1l)
 # define UTIME_OMIT    ((1l << 30) - 2l)
 #endif
+
+#endif /* bits/stat.h */