Fix two broken macros.

This commit is contained in:
Tim Kientzle 2013-04-07 05:40:49 +00:00
parent 2c899fede2
commit 6f3d2cdd00
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249222

View File

@ -59,7 +59,7 @@
#include <assert.h>
#if !defined IGNORE /* Macro to silence unused param warnings */
#define IGNORE(x) &x
#define IGNORE(x) (void)(x)
#endif
/*
@ -406,7 +406,7 @@ void *ficlRealloc(void *p, size_t size);
#if FICL_MULTITHREAD
int ficlLockDictionary(short fLock);
#else
#define ficlLockDictionary(x) 0 /* ignore */
#define ficlLockDictionary(x) /* ignore */
#endif
/*