diff options
author | drh <drh@noemail.net> | 2016-07-09 16:14:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-07-09 16:14:45 +0000 |
commit | 43f58d6a17e2875e59b72e126c9393f50fe63e79 (patch) | |
tree | 69c4f6cb47339f8844cd1df8516981b877429087 /src/test_intarray.h | |
parent | c2024c4ef2c69963199dbc60a16420e8515f88c5 (diff) | |
download | sqlite-43f58d6a17e2875e59b72e126c9393f50fe63e79.tar.gz sqlite-43f58d6a17e2875e59b72e126c9393f50fe63e79.zip |
Fix various internal #defines to conform to new C-language naming restrictions,
specifically that private-use macros names must not begin with "_".
FossilOrigin-Name: 5471aca0158851d3fb0a2517306917536deb38bb
Diffstat (limited to 'src/test_intarray.h')
-rw-r--r-- | src/test_intarray.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_intarray.h b/src/test_intarray.h index 84b1f3fe6..cee55b5da 100644 --- a/src/test_intarray.h +++ b/src/test_intarray.h @@ -75,8 +75,8 @@ ** action to free the intarray objects. */ #include "sqlite3.h" -#ifndef _INTARRAY_H_ -#define _INTARRAY_H_ +#ifndef SQLITE_INTARRAY_H +#define SQLITE_INTARRAY_H /* ** Make sure we can call this stuff from C++. @@ -125,4 +125,4 @@ SQLITE_API int sqlite3_intarray_bind( #ifdef __cplusplus } /* End of the 'extern "C"' block */ #endif -#endif /* _INTARRAY_H_ */ +#endif /* SQLITE_INTARRAY_H */ |