1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

[REGEX_FREE]: Use ((void)0) instead of just (0).

This commit is contained in:
Jim Meyering 1995-05-21 06:19:05 +00:00
parent fa9a63c5c2
commit c2e1680ae1

View file

@ -243,7 +243,7 @@ char *alloca ();
destination)
/* No need to do anything to free, after alloca. */
#define REGEX_FREE(arg) (0)
#define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */
#endif /* not REGEX_MALLOC */