1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifdef FREEBL_NO_DEPEND 6 #include "stubs.h" 7 #endif 8 9 #include "seccomon.h" 10 11 #if (defined(XP_UNIX) || defined(XP_BEOS)) && defined(SEED_ONLY_DEV_URANDOM) 12 #include "unix_urandom.c" 13 #elif defined(XP_UNIX) || defined(XP_BEOS) 14 #include "unix_rand.c" 15 #endif 16 #ifdef XP_WIN 17 #include "win_rand.c" 18 #endif 19