Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKissaki <kissaki@gmx.de>2013-01-13 03:06:29 +0400
committerKissaki <kissaki@gmx.de>2013-06-04 23:59:51 +0400
commit7642e722ff8c10b6c5e7641d7d54d576fd96b50c (patch)
treee0f4bbc0b678dbe72296010ebe6c9a37b9390a74 /overlay
parent40ca9b4507eed28c800fa724770d70cccc273882 (diff)
Adjust header guard defines for uniformity
* Append underline to header guard defines to match the others (except ui_) * Add guard to header files GlobalShortcut * Adjust mklic.pl script to add guard to licenses.h, and add updated licenses.h.
Diffstat (limited to 'overlay')
-rw-r--r--overlay/ods.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/overlay/ods.h b/overlay/ods.h
index 7d9a4d0b7..f091d5fd1 100644
--- a/overlay/ods.h
+++ b/overlay/ods.h
@@ -28,12 +28,12 @@
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef ODS_H
-#define ODS_H
+#ifndef ODS_H_
+#define ODS_H_
#include <stdarg.h>
void __cdecl _ods_out(const char *format, va_list *args);
void __cdecl fods(const char *format, ...);
-#endif // ODS_H
+#endif