am c6141470: am 7b1a95bc: Merge "Add include guard to fileext.h"

* commit 'c614147042fa352919c891b08389cbf4512c674f':
  Add include guard to fileext.h
This commit is contained in:
Calin Juravle 2014-05-06 13:51:48 +00:00 committed by Android Git Automerger
commit bfc812da93

View File

@ -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_ */