comparison src/regex.c @ 11865:5e83aee9e412

[REGEX_FREE]: Use ((void)0) instead of just (0).
author Jim Meyering <jim@meyering.net>
date Sun, 21 May 1995 06:19:05 +0000
parents 620c7195b48f
children 655dd1479452
comparison
equal deleted inserted replaced
11864:620c7195b48f 11865:5e83aee9e412
241 (destination = (char *) alloca (nsize), \ 241 (destination = (char *) alloca (nsize), \
242 bcopy (source, destination, osize), \ 242 bcopy (source, destination, osize), \
243 destination) 243 destination)
244 244
245 /* No need to do anything to free, after alloca. */ 245 /* No need to do anything to free, after alloca. */
246 #define REGEX_FREE(arg) (0) 246 #define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */
247 247
248 #endif /* not REGEX_MALLOC */ 248 #endif /* not REGEX_MALLOC */
249 249
250 /* Define how to allocate the failure stack. */ 250 /* Define how to allocate the failure stack. */
251 251