8 lines
99 B
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef LIB_RESTRICT_H
#define LIB_RESTRICT_H
2016-07-09 11:21:54 +02:00
int foo(int* restrict a, int* restrict b);
2015-04-27 22:25:09 +02:00
#endif