home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / rename.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  246 b   |  22 lines

  1.  
  2. /*
  3.  *  RENAME.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <errno.h>
  10.  
  11. int
  12. rename(s, d)
  13. const char *s;
  14. const char *d;
  15. {
  16.     if (Rename(s, d))
  17.     return(0);
  18.     errno = ENOFILE;
  19.     return(-1);
  20. }
  21.  
  22.