home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / c / touch < prev   
Text File  |  1992-07-21  |  336b  |  19 lines

  1. /* C.Touch: Update a file's timestamp */
  2.  
  3. #include "kernel.h"
  4.  
  5. #include "utils.h"
  6.  
  7. #define Touch    9
  8.  
  9. /* Update the file's timestamp with the current time.
  10.  * Return non-zero on failure, zero for success.
  11.  */
  12.  
  13. int touch (const char *file)
  14. {
  15.         _kernel_osfile_block dummy;
  16.  
  17.         return ( _kernel_osfile(Touch,file,&dummy) < 0 );
  18. }
  19.