diff options
| author | 2011-03-22 11:51:57 -0700 | |
|---|---|---|
| committer | 2011-03-22 11:51:57 -0700 | |
| commit | 39ad826d2ef799163c8865d59a453ce54175c291 (patch) | |
| tree | e5e44219e1124f9c65afa1401aec80d66972d654 | |
| parent | b2613555f654d485d9882c662384c4c2fcd89c2b (diff) | |
Include strings.h for the strcasecmp prototype.
Change-Id: I83cd464d59d16f1c5f8afa7e50d474ca2bb41713
| -rw-r--r-- | drm/common/DrmSupportInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drm/common/DrmSupportInfo.cpp b/drm/common/DrmSupportInfo.cpp index c0bff0ea7893..3dee435e749b 100644 --- a/drm/common/DrmSupportInfo.cpp +++ b/drm/common/DrmSupportInfo.cpp @@ -15,6 +15,7 @@ */ #include <drm/DrmSupportInfo.h> +#include <strings.h> using namespace android; @@ -152,4 +153,3 @@ String8& DrmSupportInfo::MimeTypeIterator::next() { mIndex++; return value; } - |