Exemple #1
0
static int fcntl_getfl (void)
{
   int fd;

   if (-1 == pop_fd (&fd))
     return -1;

   return do_fcntl_2 (fd, F_GETFL);
}
Exemple #2
0
static int fcntl_getfl (SLFile_FD_Type *f)
{   
   return do_fcntl_2 (f, F_GETFL);
}