diff options
author | unknown <serg@serg.mysql.com> | 2001-06-03 09:03:24 +0200 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-06-03 09:03:24 +0200 |
commit | b6cb800dbec8081be8c4d19c639e6d2f8d570ad7 (patch) | |
tree | 2f50f52070d5e845832b173081a91d264a4d056e /sql | |
parent | 8c8244918fc37bb25656a5f8b451a362e4b16577 (diff) | |
download | mariadb-git-b6cb800dbec8081be8c4d19c639e6d2f8d570ad7.tar.gz |
misplaced #ifdef fixed
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql')
-rw-r--r-- | sql/mysqld.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index b009387f5c0..4390ff6455d 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -87,17 +87,16 @@ int deny_severity = LOG_WARNING; #include <sys/mman.h> #endif +#ifdef _AIX41 +int initgroups(const char *,int); +#endif + #if defined(__FreeBSD__) && defined(HAVE_IEEEFP_H) #include <ieeefp.h> #ifdef HAVE_FP_EXCEPT // Fix type conflict typedef fp_except fp_except_t; #endif -#ifdef _AIX41 -extern "C" int initgroups(const char *,int); -#endif - - /* We can't handle floating point expections with threads, so disable this on freebsd */ |