~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_list.h

  • Committer: Monty Taylor
  • Date: 2008-10-06 01:30:47 UTC
  • Revision ID: monty@inaugust.com-20081006013047-6m2ejc0c4peye2k9
Removed my_free(). It turns out that it had been def'd to ignore the flags passed to it in the second arg anyway. Gotta love that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
#define list_rest(a) ((a)->next)
38
38
#define list_push(a,b) (a)=list_cons((b),(a))
39
 
#define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; my_free((unsigned char *) old,MYF(MY_FAE)); }
 
39
#define list_pop(A) {LIST *old=(A); (A)=list_delete(old,old) ; free((unsigned char *) old); }
40
40
 
41
41
#ifdef  __cplusplus
42
42
}