home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
program
/
pdmake
/
astat.h
next >
Wrap
C/C++ Source or Header
|
1986-12-14
|
534b
|
20 lines
/************************************************\
* *
* astat.h - Retrofit <sys/stat.h> *
* for the Atari ST machines *
* *
* J.R. Bammi *
* *
\************************************************/
#define time_t long
struct stat
{
char st_sp1[21]; /* Junk */
char st_mode; /* File attributes */
time_t st_mod; /* Mod time, we use the date & time as 1 long */
long st_size; /* File size */
char st_sp2[14]; /* File name */
};