blob: 8855bb4ba5f42c06d728e2dbe23a6e15faf33313 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
Generic stuff to compile VIDIX only on any system (SCRATCH)
*/
#warn This stuff is not ported on yur system
static __inline__ int enable_os_io(void)
{
printf("enable_os_io: generic function call\n");
return 0;
}
static __inline__ int disable_os_io(void)
{
printf("disable_os_io: generic function call\n");
return 0;
}
|