1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-03 20:51:07 +01:00

Silence unused-parameter warnings from the compiler.

This commit is contained in:
Wayne Davison 2004-10-01 19:06:49 +00:00
parent aa5c13f71c
commit b8b11e7627

View file

@ -2743,7 +2743,7 @@ randomsetfn(UNUSED(Param pm), zlong v)
/**/
zlong
intsecondsgetfn(Param pm)
intsecondsgetfn(UNUSED(Param pm))
{
struct timeval now;
struct timezone dummy_tz;
@ -2758,7 +2758,7 @@ intsecondsgetfn(Param pm)
/**/
void
intsecondssetfn(Param pm, zlong x)
intsecondssetfn(UNUSED(Param pm), zlong x)
{
struct timeval now;
struct timezone dummy_tz;