Matthias-Christian Ott пре 17 година
родитељ
комит
c61b34e8e1
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      std.c

+ 1 - 1
std.c

@@ -13,7 +13,7 @@
 #include <string.h>
 #include <unistd.h>
 
-#define LENGTH(x)	(sizeof (x) / sizeof (x)[0])
+#define LENGTH(x)	(sizeof(x) / sizeof((x)[0]))
 #define MAX(a,b)	(((a) > (b)) ? (a) : (b))
 #define MIN(a,b)	(((a) < (b)) ? (a) : (b))