ref: 87afa348295ab32b9c3349264737f7e8afd102d7
parent: 730884913639d0c7b6c19534bcf6c33253ee5729
author: lieff <lieff@users.noreply.github.com>
date: Mon Feb 26 06:48:56 EST 2018
switch to #ifdef include guard style
--- a/minimp3.h
+++ b/minimp3.h
@@ -1,4 +1,5 @@
-#pragma once
+#ifndef MINIMP3_H
+#define MINIMP3_H
/*
https://github.com/lieff/minimp3
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide.
@@ -1730,3 +1731,4 @@
return success*hdr_frame_samples(dec->header);
}
#endif /*MINIMP3_IMPLEMENTATION*/
+#endif