URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [compat/] [linux/] [current/] [include/] [linux/] [stat.h] - Rev 786
Compare with Previous | Blame | View Log
#ifndef __LINUX_STAT_H__ #define __LINUX_STAT_H__ #include <sys/stat.h> #define S_IRUGO (S_IRUSR|S_IRGRP|S_IROTH) #define S_IWUGO (S_IWUSR|S_IWGRP|S_IWOTH) #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH) #define S_IRWXUGO (S_IRWXU|S_IRWXG|S_IRWXO) #endif /* __LINUX_STAT_H__ */