Module Name: othersrc Committed By: dholland Date: Mon Mar 4 06:48:03 UTC 2013
Modified Files: othersrc/usr.bin/dholland-make2: array.h Log Message: fail, try again. blah To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 othersrc/usr.bin/dholland-make2/array.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: othersrc/usr.bin/dholland-make2/array.h diff -u othersrc/usr.bin/dholland-make2/array.h:1.2 othersrc/usr.bin/dholland-make2/array.h:1.3 --- othersrc/usr.bin/dholland-make2/array.h:1.2 Mon Mar 4 06:45:23 2013 +++ othersrc/usr.bin/dholland-make2/array.h Mon Mar 4 06:48:03 2013 @@ -254,7 +254,7 @@ array_add(struct array *a, void *val, un return array_remove(&a->arr, index_); \ } -#define DECLARRAY(T) DECLARRAY_BYTYPE(T##array, struct T) +#define DECLARRAY(T, INLINE) DECLARRAY_BYTYPE(T##array, struct T, INLINE) #define DEFARRAY(T, INLINE) DEFARRAY_BYTYPE(T##array, struct T, INLINE) ////////////////////////////////////////////////////////////