diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2003-01-27 02:18:26 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2003-01-27 02:18:26 +0000 |
commit | 14a401aa273c94f6fdaa8ec9fc39aa272378aab7 (patch) | |
tree | 80efb35c74851314e5cb9793e8df47a733501647 | |
parent | 84461ed57901396443c64778c57c6692449b9159 (diff) | |
download | uClibc-alpine-14a401aa273c94f6fdaa8ec9fc39aa272378aab7.tar.bz2 uClibc-alpine-14a401aa273c94f6fdaa8ec9fc39aa272378aab7.tar.xz |
Add multiple-include protection.
-rw-r--r-- | libc/sysdeps/linux/v850/bits/kernel_stat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/v850/bits/kernel_stat.h b/libc/sysdeps/linux/v850/bits/kernel_stat.h index a4093aec0..5e55ed01d 100644 --- a/libc/sysdeps/linux/v850/bits/kernel_stat.h +++ b/libc/sysdeps/linux/v850/bits/kernel_stat.h @@ -1,5 +1,8 @@ /* Stat structure for linux/v850 */ +#ifndef _BITS_STAT_STRUCT_H +#define _BITS_STAT_STRUCT_H + struct kernel_stat { __kernel_dev_t st_dev; @@ -56,3 +59,4 @@ struct kernel_stat64 unsigned long __unused7; /* high 32 bits of ctime someday */ }; +#endif /* _BITS_STAT_STRUCT_H */ |