~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to strings/str_test.c

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
 
266
266
void dummy_functions(void)
267
267
{
268
 
  VOID(memchr(from,'a',5));
269
 
  VOID(memcmp(from,to,5));
270
 
  VOID(memcpy(from,to,5));
271
 
  VOID(memset(from,' ',5));
272
 
  VOID(strcmp(from,to));
273
 
  VOID(strcpy(from,to));
274
 
  VOID(strstr(from,to));
275
 
  VOID(strrchr(from,'a'));
 
268
  (void) memchr(from,'a',5);
 
269
  (void) memcmp(from,to,5);
 
270
  (void) memcpy(from,to,5);
 
271
  (void) memset(from,' ',5);
 
272
  (void) strcmp(from,to);
 
273
  (void) strcpy(from,to);
 
274
  (void) strstr(from,to);
 
275
  (void) strrchr(from,'a');
276
276
  return;
277
277
}