summaryrefslogtreecommitdiff
path: root/include/SDL_endian.h
diff options
context:
space:
mode:
authorGabriel Jacobo <gabomdq@gmail.com>2013-08-21 09:47:10 -0300
committerGabriel Jacobo <gabomdq@gmail.com>2013-08-21 09:47:10 -0300
commit51a975f559e6297954da1eff11cd6945d095fb41 (patch)
tree1300ea2f4e2a9e819786dfe6e2822fa7262e07ab /include/SDL_endian.h
parent9ca33d5449defeb3b4e24c50ab978b190de6d1a6 (diff)
downloadsdl-51a975f559e6297954da1eff11cd6945d095fb41.tar.gz
OCD fixes: Adds a space after /* (glory to regular expressions!)
Diffstat (limited to 'include/SDL_endian.h')
-rw-r--r--include/SDL_endian.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SDL_endian.h b/include/SDL_endian.h
index 81e8c70e7..3450316c0 100644
--- a/include/SDL_endian.h
+++ b/include/SDL_endian.h
@@ -33,10 +33,10 @@
/**
* \name The two types of endianness
*/
-/*@{ */
+/* @{ */
#define SDL_LIL_ENDIAN 1234
#define SDL_BIG_ENDIAN 4321
-/*@} */
+/* @} */
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
#ifdef __linux__
@@ -206,7 +206,7 @@ SDL_SwapFloat(float x)
* \name Swap to native
* Byteswap item from the specified endianness to the native endianness.
*/
-/*@{ */
+/* @{ */
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
#define SDL_SwapLE16(X) (X)
#define SDL_SwapLE32(X) (X)
@@ -226,7 +226,7 @@ SDL_SwapFloat(float x)
#define SDL_SwapBE64(X) (X)
#define SDL_SwapFloatBE(X) (X)
#endif
-/*@} *//*Swap to native */
+/* @} *//* Swap to native */
/* Ends C function definitions when using C++ */
#ifdef __cplusplus