~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sys.h

  • Committer: Monty Taylor
  • Date: 2008-07-29 19:45:49 UTC
  • mfrom: (212.5.34 remove-include-dir)
  • mto: This revision was merged to the branch mainline in revision 236.
  • Revision ID: monty@inaugust.com-20080729194549-1455h4t2fh40s92z
Merged remove-include-dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include <mystrings/m_ctype.h>                    /* for CHARSET_INFO */
34
34
#include <stdarg.h>
35
 
#include <typelib.h>
 
35
#include <mysys/typelib.h>
36
36
 
37
37
#define MY_INIT(name);          { my_progname= name; my_init(); }
38
38
 
569
569
extern void my_error _VARARGS((int nr,myf MyFlags, ...));
570
570
extern void my_printf_error _VARARGS((uint my_err, const char *format,
571
571
                                      myf MyFlags, ...))
572
 
                                      ATTRIBUTE_FORMAT(printf, 2, 4);
 
572
                                      __attribute__((format(printf, 2, 4)));
573
573
extern int my_error_register(const char **errmsgs, int first, int last);
574
574
extern const char **my_error_unregister(int first, int last);
575
575
extern void my_message(uint my_err, const char *str,myf MyFlags);