Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. /* This is file FILELEN.C */
  3. /*
  4.  * Copyright (c) 1994 Eli Zaretskii <eliz@is.elta.co.il>
  5.  *
  6.  * This software may be used freely so long as this copyright notice is
  7.  * left intact.  There is no warranty on this software.
  8.  *
  9.  */
  10.  
  11. #include <errno.h>
  12. #include <libc/dosio.h>
  13.  
  14. long __filelength(int);
  15.  
  16. long __filelength(int fhandle)
  17. {
  18.  return dosemu_iosize(fhandle);
  19. }
  20.