blob: 24c5d7c0a3e02989620a93aee538a8bd9127eb1a (
plain)
1
2
3
4
5
6
7
8
9
|
#include <types.h>
#include <time.h>
typedef struct SYS_STAT_PARAMS {
const char *pathname;
struct stat *statbuf;
} __attribute__((packed)) SYS_STAT_PARAMS;
int syscall_stat(SYS_STAT_PARAMS *args);
|