Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / metadata / mono-endian.c
index 23b6fe7b3caffab9839fab0fd6ef704492a24b4f..d7822c72ff6306bcdd732310b8a2555085d2e50b 100644 (file)
@@ -1,13 +1,15 @@
-/*
- * mono-endian.c:
+/**
+ * \file
  *
  * Author:
  *     Mono Project (http://www.mono-project.com)
  *
  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
+ * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
 #include <config.h>
+#include <mono/utils/mono-compiler.h>
 #include "mono-endian.h"
 
 #if NO_UNALIGNED_ACCESS
@@ -85,4 +87,8 @@ mono_read64 (const unsigned char *x)
        return r.i;
 }
 
+#else /* NO_UNALIGNED_ACCESS */
+
+MONO_EMPTY_SOURCE_FILE (mono_endian);
+
 #endif