Subversion Repositories tendra.SVN

Rev

Blame | Last modification | View Log | RSS feed

#ifndef __TENDRA_UTIME_H
#define __TENDRA_UTIME_H

#include <sys/types.h>

struct utimbuf {
        time_t actime;          /* Access time */
        time_t modtime;         /* Modification time */
};

#endif