Re: [U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <0bca9a93be63621ee791be20c6bd1c33495af517.1236207433.git.pty...@xes-inc.com> you wrote: > Replace random()/srandom() use with rand()/srand() to support > compilation with the mingw toolchain > > Signed-off-by: Peter Tyser > --- > tools/gen_eth_addr.c |6 +++---

Re: [U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-04-03 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200903041853.05083.vap...@gentoo.org> you wrote: > > On Wednesday 04 March 2009 18:33:00 Peter Tyser wrote: > > Replace random()/srandom() use with rand()/srand() to support > > compilation with the mingw toolchain > > i'd add to the changelog that in general, the

Re: [U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-03-04 Thread Mike Frysinger
On Wednesday 04 March 2009 18:33:00 Peter Tyser wrote: > Replace random()/srandom() use with rand()/srand() to support > compilation with the mingw toolchain i'd add to the changelog that in general, the latter should be more common than the former since they've been around longer. and note that

[U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-03-04 Thread Peter Tyser
Replace random()/srandom() use with rand()/srand() to support compilation with the mingw toolchain Signed-off-by: Peter Tyser --- tools/gen_eth_addr.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/gen_eth_addr.c b/tools/gen_eth_addr.c index 75be385..429b20d