aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2014-10-23 10:41:19 -0700
committerEric Laurent <elaurent@google.com>2014-10-23 10:41:19 -0700
commitdaa3871b8b2001ffe87d86c147914aac27c0aaf8 (patch)
treea1322e3016b5c3a8f71682b9464efb1b7cd39aa8
parent25a4b4b5c7451702a164c98ef502e41cc03e1e1f (diff)
downloadtinycompress-daa3871b8b2001ffe87d86c147914aac27c0aaf8.tar.gz
fix missing closing bracket for extern "C" statement in tinymp3.h
Bug: 18100030. Change-Id: I268aef41dabbafdcaef7c926636bf7bfe7089b1b
-rw-r--r--include/tinycompress/tinymp3.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tinycompress/tinymp3.h b/include/tinycompress/tinymp3.h
index b7b45e3..aa5aca3 100644
--- a/include/tinycompress/tinymp3.h
+++ b/include/tinycompress/tinymp3.h
@@ -103,4 +103,8 @@ enum mp3_stereo_mode {
MONO = 0x03
};
+#if defined(__cplusplus)
+}
+#endif
+
#endif