mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-19 10:15:48 +02:00
10 lines
206 B
C
10 lines
206 B
C
|
|
#ifndef PARAMS
|
||
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
||
|
|
# define PARAMS(Args) Args
|
||
|
|
# else
|
||
|
|
# define PARAMS(Args) ()
|
||
|
|
# endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
size_t full_write PARAMS ((int, const char *, size_t));
|