summaryrefslogtreecommitdiff
path: root/lib/filemode.h
blob: 5b19db236b152c8124935c21284cc5cae517ca2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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