aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-05-06 13:47:18 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-05-06 13:47:19 +0000
commit7b1a95bc761c584d2654f6dc355830ff2e405655 (patch)
tree13d828d5828e7e9520a1f5e84aef2884aa146348
parent9b5ee4aa85cf55467eb9a749b6602f6f2ba1cfc6 (diff)
parent9287223674afe3957d248ad51200c5abead6ec96 (diff)
downloadbionic-idea133-weekly-release.tar.gz
Merge "Add include guard to fileext.h"idea133-weekly-release
-rw-r--r--libc/stdio/fileext.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/stdio/fileext.h b/libc/stdio/fileext.h
index fa6fed671..1f2a3a31e 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_ */