Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: third_party/sqlite/src/src/random.c

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/src/printf.c ('k') | third_party/sqlite/src/src/resolve.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/src/random.c
diff --git a/third_party/sqlite/src/src/random.c b/third_party/sqlite/src/src/random.c
index 179d01bef247d46245804d4bce88e427feedcfe5..d4ae77c4355e8248fa8bab8548ea5f7962622b71 100644
--- a/third_party/sqlite/src/src/random.c
+++ b/third_party/sqlite/src/src/random.c
@@ -106,7 +106,7 @@ void sqlite3_randomness(int N, void *pBuf){
sqlite3_mutex_leave(mutex);
}
-#ifndef SQLITE_OMIT_BUILTIN_TEST
+#ifndef SQLITE_UNTESTABLE
/*
** For testing purposes, we sometimes want to preserve the state of
** PRNG and restore the PRNG to its saved state at a later time, or
@@ -131,4 +131,4 @@ void sqlite3PrngRestoreState(void){
sizeof(sqlite3Prng)
);
}
-#endif /* SQLITE_OMIT_BUILTIN_TEST */
+#endif /* SQLITE_UNTESTABLE */
« no previous file with comments | « third_party/sqlite/src/src/printf.c ('k') | third_party/sqlite/src/src/resolve.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698