~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/m_string.h

  • Committer: Monty Taylor
  • Date: 2008-07-05 22:08:52 UTC
  • mto: This revision was merged to the branch mainline in revision 77.
  • Revision ID: monty@inaugust.com-20080705220852-cqd9t6tfkhvlcf73
Removed HAVE_LONG_LONG, as this is now assumed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
#define HAVE_STRTOLL
257
257
#endif
258
258
#else
259
 
#ifdef HAVE_LONG_LONG
260
259
extern char *longlong2str(longlong val,char *dst,int radix);
261
260
extern char *longlong10_to_str(longlong val,char *dst,int radix);
262
261
#if (!defined(HAVE_STRTOULL) || defined(NO_STRTOLL_PROTO))
264
263
extern ulonglong strtoull(const char *str, char **ptr, int base);
265
264
#endif
266
265
#endif
267
 
#endif
268
266
 
269
267
/* my_vsnprintf.c */
270
268