~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/my_sys.h

More cleanup, this time libmysql_r goes to the bitbucket

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
} my_aio_result;
26
26
#endif
27
27
 
28
 
#ifndef THREAD
29
 
extern int my_errno;            /* Last error in mysys */
30
 
#else
 
28
#include <errno.h>
 
29
#define my_errno (errno)
 
30
 
 
31
#ifdef THREAD
31
32
#include <my_pthread.h>
32
33
#endif
33
34