blob: 3da16505fae060579020bd0474118369987f9289 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/*
* DIO.C -- Stubbed out version of directio for compatibility on systems
* that don't provide this routine in libc.a (e.g., Solaris 5.5).
*/
int
directio (int fd, int advice)
{
return (-1);
}
|