mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-07 08:33:23 +08:00
d1e59e17e7
(mode_string): Now takes mode_t.
20 lines
313 B
C
20 lines
313 B
C
#ifndef FILEMODE_H_
|
|
|
|
# if HAVE_CONFIG_H
|
|
# include <config.h>
|
|
# endif
|
|
|
|
# include <sys/types.h>
|
|
|
|
# ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
# endif
|
|
|
|
void mode_string PARAMS ((mode_t mode, char *str));
|
|
|
|
#endif
|