commit | 7b1a95bc761c584d2654f6dc355830ff2e405655 | [log] [tgz] |
---|---|---|
author | Calin Juravle <calin@google.com> | Tue May 06 13:47:18 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue May 06 13:47:19 2014 +0000 |
tree | 13d828d5828e7e9520a1f5e84aef2884aa146348 | |
parent | 9b5ee4aa85cf55467eb9a749b6602f6f2ba1cfc6 [diff] | |
parent | 9287223674afe3957d248ad51200c5abead6ec96 [diff] |
Merge "Add include guard to fileext.h"
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 @@ (f)->_ext._base = (unsigned char *)(fext); \ _FILEEXT_INIT(f); \ } while (0) + +#endif /* _FILEEXT_H_ */