mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-10 01:53:25 +08:00
10 lines
174 B
C
10 lines
174 B
C
#undef __P
|
|
#if defined (__STDC__) && __STDC__
|
|
# define __P(args) args
|
|
#else
|
|
# define __P(args) ()
|
|
#endif
|
|
|
|
int
|
|
memcasecmp __P((const void *vs1, const void *vs2, size_t n));
|