medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 4f4a47a7057fe71f4e58124724f8d656e404ecb6
parent 7f814c553b92fa2a7b7dd29b06f9344dd47dd323
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun Aug 16 12:00:09 +0200

array_len -> array_count

Diffstat:
intrinsics.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/intrinsics.h b/intrinsics.h @@ -18,7 +18,7 @@ typedef uint64_t u64; typedef float f32; typedef double f64; -#define array_len( x ) ( sizeof( x ) / sizeof( ( x )[ 0 ] ) ) +#define array_count( x ) ( sizeof( x ) / sizeof( ( x )[ 0 ] ) ) #ifdef assert #undef assert