diff options
| author | Matthias-Christian Ott <ott@enolink.de> | 2008-06-02 20:15:52 +0200 |
|---|---|---|
| committer | Matthias-Christian Ott <ott@enolink.de> | 2008-06-02 20:15:52 +0200 |
| commit | 75b1565fdc3ddb9741a597a3a14bad7383ac763c (patch) | |
| tree | 495a2c86f3119158f197a736b27af103f3f41b0e | |
| parent | 4059fb04fa993305475446e2ab2cbb0a3c832203 (diff) | |
| download | st-75b1565fdc3ddb9741a597a3a14bad7383ac763c.tar.gz st-75b1565fdc3ddb9741a597a3a14bad7383ac763c.zip | |
correct LENGTH()
| -rw-r--r-- | std.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |
