summaryrefslogtreecommitdiffstats
path: root/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp')
-rw-r--r--debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp b/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp
deleted file mode 100644
index f884e5dc..00000000
--- a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/number/random_win32.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "libplatform/impl.h"
-#include <stdlib.h>
-
-namespace mp4v2 { namespace platform { namespace number {
-
-///////////////////////////////////////////////////////////////////////////////
-
-uint32_t
-random32()
-{
- return uint32_t( ::rand() << 16 | ::rand() );
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-void
-srandom( uint32_t seed )
-{
- ::srand( seed );
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-}}} // namespace mp4v2::platform::time