Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
relibc
Commits
bc98f6a0
Commit
bc98f6a0
authored
7 years ago
by
Paul Sajna
Browse files
Options
Downloads
Patches
Plain Diff
git rm include/sys/stat.h
parent
76c4520c
No related branches found
No related tags found
1 merge request
!69
stat is now autogenerated correctly
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/sys/stat.h
+0
-39
0 additions, 39 deletions
include/sys/stat.h
with
0 additions
and
39 deletions
include/sys/stat.h
deleted
100644 → 0
+
0
−
39
View file @
76c4520c
#ifndef _STAT_H
#define _STAT_H
#include
<sys/types.h>
struct
stat
{
dev_t
st_dev
;
ino_t
st_ino
;
nlink_t
st_nlink
;
mode_t
st_mode
;
uid_t
st_uid
;
gid_t
st_gid
;
dev_t
st_rdev
;
off_t
st_size
;
blksize_t
st_blksize
;
time_t
st_atim
;
time_t
st_mtim
;
time_t
st_ctim
;
};
int
chmod
(
const
char
*
path
,
mode_t
mode
);
int
fchmod
(
int
fildes
,
mode_t
mode
);
int
fstat
(
int
fildes
,
struct
stat
*
buf
);
int
lstat
(
const
char
*
path
,
struct
stat
*
buf
);
int
mkdir
(
const
char
*
path
,
mode_t
mode
);
int
mkfifo
(
const
char
*
path
,
mode_t
mode
);
int
mknod
(
const
char
*
path
,
mode_t
mode
,
dev_t
dev
);
int
stat
(
const
char
*
file
,
struct
stat
*
buf
);
mode_t
umask
(
mode_t
mask
);
#endif
/* _STAT_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment