~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/m_string.h

Merging trunk changes from over weekend.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
 
84
84
#if defined(HAVE_STPCPY)
85
85
#define strmov(A,B) stpcpy((A),(B))
86
 
#ifndef stpcpy
87
 
extern char *stpcpy(char *, const char *);      /* For AIX with gcc 2.95.3 */
88
 
#endif
89
86
#endif
90
87
 
91
88
/* Declared in int2str() */
259
256
#define HAVE_STRTOLL
260
257
#endif
261
258
#else
262
 
#ifdef HAVE_LONG_LONG
263
259
extern char *longlong2str(longlong val,char *dst,int radix);
264
260
extern char *longlong10_to_str(longlong val,char *dst,int radix);
265
261
#if (!defined(HAVE_STRTOULL) || defined(NO_STRTOLL_PROTO))
267
263
extern ulonglong strtoull(const char *str, char **ptr, int base);
268
264
#endif
269
265
#endif
270
 
#endif
271
266
 
272
267
/* my_vsnprintf.c */
273
268