diff options
author | Calin Juravle <calin@google.com> | 2014-05-02 11:53:26 +0100 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-05-02 17:34:58 +0100 |
commit | 9287223674afe3957d248ad51200c5abead6ec96 (patch) | |
tree | 738f875d4a5166386f3960777bf270f6313770e2 /libc/stdio | |
parent | 790890fd5c896a098142e0783b10fa8246462249 (diff) | |
download | bionic-9287223674afe3957d248ad51200c5abead6ec96.zip bionic-9287223674afe3957d248ad51200c5abead6ec96.tar.gz bionic-9287223674afe3957d248ad51200c5abead6ec96.tar.bz2 |
Add include guard to fileext.h
Change-Id: I89b0e3bf0b15989727b5903b40bec92d49e122d9
Diffstat (limited to 'libc/stdio')
-rw-r--r-- | libc/stdio/fileext.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/stdio/fileext.h b/libc/stdio/fileext.h index fa6fed6..1f2a3a3 100644 --- a/libc/stdio/fileext.h +++ b/libc/stdio/fileext.h @@ -29,6 +29,9 @@ * $Citrus$ */ +#ifndef _FILEEXT_H_ +#define _FILEEXT_H_ + #include <pthread.h> /* @@ -59,3 +62,5 @@ do { \ (f)->_ext._base = (unsigned char *)(fext); \ _FILEEXT_INIT(f); \ } while (0) + +#endif /* _FILEEXT_H_ */ |