diff options
author | monty@mysql.com <> | 2004-06-28 00:42:02 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-06-28 00:42:02 +0300 |
commit | eca9418ca785e2b95c3e1dbe82fc9ddecf7a0331 (patch) | |
tree | 954fa8b91cc81036542a5044308f8e97a192170a /include | |
parent | 406ae8a59e665d94cb394d4197918607ebeee1f8 (diff) | |
download | mariadb-git-eca9418ca785e2b95c3e1dbe82fc9ddecf7a0331.tar.gz |
Added missing my_time.c file to mysqlclient project
Moved include <assert.h> to my_global.h
Diffstat (limited to 'include')
-rw-r--r-- | include/my_dbug.h | 5 | ||||
-rw-r--r-- | include/my_global.h | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/my_dbug.h b/include/my_dbug.h index bc90b91f1c7..9174a8b1ef9 100644 --- a/include/my_dbug.h +++ b/include/my_dbug.h @@ -16,10 +16,7 @@ #ifndef _dbug_h #define _dbug_h -#ifdef DBUG_OFF -#define NDEBUG /* for assert.h */ -#endif -#include <assert.h> + #ifdef __cplusplus extern "C" { #endif diff --git a/include/my_global.h b/include/my_global.h index 478bfcfdbb7..f5c14ea3e10 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -313,6 +313,13 @@ C_MODE_END #include <crypt.h> #endif +/* + A lot of our programs uses asserts, so better to always include it + This also fixes a problem when people uses DBUG_ASSERT without including + assert.h +*/ +#include <assert.h> + /* Go around some bugs in different OS and compilers */ #if defined(_HPUX_SOURCE) && defined(HAVE_SYS_STREAM_H) #include <sys/stream.h> /* HPUX 10.20 defines ulong here. UGLY !!! */ |