mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-13 20:06:37 +08:00
10 lines
214 B
C
10 lines
214 B
C
#ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
#endif
|
|
|
|
void mode_string PARAMS ((short unsigned int mode, char *str));
|