home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Palm / libc / fclose.c < prev    next >
C/C++ Source or Header  |  2000-12-21  |  191b  |  19 lines

  1. /*
  2.   fclose replacement for palmos
  3.  
  4.   Jeffery D. Collins
  5.  
  6. */
  7.  
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12.  
  13. int fclose(FILE *stream) {
  14.     printf("in fclose\n");
  15.      /* dummy replacement for fclose */
  16.   return 0;
  17.  
  18. }
  19.