~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/global.h

  • Committer: Monty Taylor
  • Date: 2009-03-05 02:11:11 UTC
  • mto: This revision was merged to the branch mainline in revision 912.
  • Revision ID: mordred@inaugust.com-20090305021111-1fq4fao9egynin9a
Removed references to strtok_r - since we don't actually use it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
#error "please add -DSTACK_DIRECTION=1 or -1 to your CPPFLAGS"
178
178
#endif
179
179
 
180
 
#if !defined(HAVE_STRTOK_R)
181
 
#define strtok_r(A,B,C) strtok((A),(B))
182
 
#endif
183
 
 
184
180
#ifdef HAVE_FLOAT_H
185
181
#include <float.h>
186
182
#else