Subversion Repositories Kolibri OS

Rev

Rev 4921 | Rev 6099 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 4930
Line 20... Line 20...
20
#include 
20
#include 
21
#ifdef _COMPILING_NEWLIB
21
#ifdef _COMPILING_NEWLIB
22
#define stat64 stat
22
#define stat64 stat
23
#endif
23
#endif
24
#else
24
#else
25
struct	stat 
25
struct	stat
26
{
26
{
27
  dev_t		st_dev;
27
  dev_t		st_dev;
28
  ino_t		st_ino;
28
  ino_t		st_ino;
29
  mode_t	st_mode;
29
  mode_t	st_mode;
30
  nlink_t	st_nlink;
30
  nlink_t	st_nlink;
Line 140... Line 140...
140
/* Special tv_nsec values for futimens(2) and utimensat(2). */
140
/* Special tv_nsec values for futimens(2) and utimensat(2). */
141
#define UTIME_NOW	-2L
141
#define UTIME_NOW	-2L
142
#define UTIME_OMIT	-1L
142
#define UTIME_OMIT	-1L
143
#endif
143
#endif
Line 144... Line -...
144
 
-
 
145
int	_EXFUN(chmod,( const char *__path, mode_t __mode ));
-
 
146
int     _EXFUN(fchmod,(int __fd, mode_t __mode));
144
 
147
int	_EXFUN(fstat,( int __fd, struct stat *__sbuf ));
145
int	_EXFUN(fstat,( int __fd, struct stat *__sbuf ));
148
int	_EXFUN(mkdir,( const char *_path, mode_t __mode ));
146
int	_EXFUN(mkdir,( const char *_path, mode_t __mode ));
149
int	_EXFUN(mkfifo,( const char *__path, mode_t __mode ));
147
int	_EXFUN(mkfifo,( const char *__path, mode_t __mode ));
150
int	_EXFUN(stat,( const char *__restrict __path, struct stat *__restrict __sbuf ));
148
int	_EXFUN(stat,( const char *__restrict __path, struct stat *__restrict __sbuf ));