home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixtools
/
util
/
c
/
touch
< prev
Wrap
Text File
|
1992-07-21
|
336b
|
19 lines
/* C.Touch: Update a file's timestamp */
#include "kernel.h"
#include "utils.h"
#define Touch 9
/* Update the file's timestamp with the current time.
* Return non-zero on failure, zero for success.
*/
int touch (const char *file)
{
_kernel_osfile_block dummy;
return ( _kernel_osfile(Touch,file,&dummy) < 0 );
}