]> git.sesse.net Git - vlc/blobdiff - include/common.h
. correction des conneries de BBP :)
[vlc] / include / common.h
index 4cb49bbedb041a16c6b1b4393c080c335cefa38f..813da8077ec0e5340ad9adf1a85bd16458ee14f1 100644 (file)
@@ -102,14 +102,12 @@ typedef struct video_parser_s *         p_video_parser_t;
 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
 
 /* MAX and MIN: self explanatory */
-//#ifndef SYS_BEOS
 #ifndef MAX
 #define MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
 #endif
 #ifndef MIN
 #define MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
 #endif
-//#endif
 
 /* MSB (big endian)/LSB (little endian) convertions - network order is always
  * MSB, and should be used for both network communications and files. Note that