repo.or.cz
/
coreutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[coreutils.git]
/
lib
/
filemode.h
blob
5b19db236b152c8124935c21284cc5cae517ca2c
1
#ifndef FILEMODE_H_
2
3
# if HAVE_CONFIG_H
4
# include <config.h>
5
# endif
6
7
# include <sys/types.h>
8
9
# ifndef PARAMS
10
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
11
# define PARAMS(Args) Args
12
# else
13
# define PARAMS(Args) ()
14
# endif
15
# endif
16
17
void
mode_string
PARAMS
((
mode_t mode
,
char
*
str
));
18
19
#endif