summaryrefslogtreecommitdiff
path: root/libpsx/include/sys/stat.h
blob: 5b0d7cae4ee2490d5e549c555a9528add707c691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * PSXSDK
 *
 * sys/stat.h
 */

#ifndef _SYS_STAT_H
#define _SYS_STAT_H

struct stat
{
	unsigned int st_size;
	unsigned int st_blksize;
	unsigned int st_blocks;
};

int stat(const char *path, struct stat *sb);

#endif