summaryrefslogtreecommitdiff
path: root/md5_utils.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-12-15 18:40:23 -0800
committerJames Zern <jzern@google.com>2013-12-16 19:41:13 -0800
commit0f512788c8cc2af914538acc31a9ae9bb03f5741 (patch)
tree241b97dbd4d57b5601f1d486ff722e317218d4cf /md5_utils.h
parentd2f49407830de9dbc466f03fcdc90d379a3c0269 (diff)
downloadlibvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.tar
libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.tar.gz
libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.tar.bz2
libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.zip
{,vpx_scale}: normalize include guards
Change-Id: Ib8aafeee30d59521ee256dc1801e0db6b4b8a371
Diffstat (limited to 'md5_utils.h')
-rw-r--r--md5_utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/md5_utils.h b/md5_utils.h
index 81792c4af..9935eae6d 100644
--- a/md5_utils.h
+++ b/md5_utils.h
@@ -20,8 +20,8 @@
* Still in the public domain.
*/
-#ifndef MD5_H
-#define MD5_H
+#ifndef MD5_UTILS_H_
+#define MD5_UTILS_H_
#define md5byte unsigned char
#define UWORD32 unsigned int
@@ -38,4 +38,4 @@ void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
void MD5Final(unsigned char digest[16], struct MD5Context *context);
void MD5Transform(UWORD32 buf[4], UWORD32 const in[16]);
-#endif /* !MD5_H */
+#endif // MD5_UTILS_H_