|
|
@@ -5,8 +5,8 @@ struct foo {
|
|
|
unsigned int a, b;
|
|
|
};
|
|
|
|
|
|
-int check_parameter(const struct foo array[4]);
|
|
|
-int check_parameter(const struct foo array[4])
|
|
|
+int check_parameter(const struct foo *array);
|
|
|
+int check_parameter(const struct foo *array)
|
|
|
{
|
|
|
#ifdef FAIL
|
|
|
return (ARRAY_SIZE(array) == 4);
|