
/*
 *  SYS/STAT.H
 */

#ifndef _SYS_STAT_H
#define _SYS_STAT_H

#ifndef LIBRARIES_DOS_H
#include <libraries/dos.h>
#endif

typedef struct DateStamp STAMP;

#define S_IFMT	    0xF000
#define S_IFREG     0x1000

struct stat {
    long    st_mode;
    long    st_size;
    long    st_ctime;

    /*STAMP   sta_stamp;*/
};

#endif

