2015-04-27 22:25:09 +02:00
|
|
|
|
|
|
|
#include "lib_restrict.h"
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
int bar(int* restrict a, int* restrict b)
|
2015-04-27 22:25:09 +02:00
|
|
|
{
|
|
|
|
(void)a;
|
|
|
|
(void)b;
|
|
|
|
return foo(a, b);
|
|
|
|
}
|
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
int main(void)
|
2015-04-27 22:25:09 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|