-#else /* BARE_BONES_SEED */
-
-#include <CoreServices/../Frameworks/CarbonCore.framework/Headers/Timer.h>
-#include <CoreServices/../Frameworks/CarbonCore.framework/Headers/LowMem.h>
-
-// this is mighty pitiful anyway...
-unsigned createRandomSeed()
-{
- UnsignedWide curTime;
- //unsigned ticks; /* use 16 bits */
- unsigned rtnHi;
- unsigned rtnLo;
-
- /* FIXME - need a way to distinguish OS9x from Carbon. Carbon
- * doesn't have LMGetTicks(). */
-
- Microseconds(&curTime); /* low 16 bits are pretty good */
-
- // Carbon hack
- // rtnHi = LMGetTicks();
- rtnHi = 0x5a5aa5a5;
- rtnLo = curTime.lo & 0xffff;
- return (rtnHi ^ rtnLo);
-}
-#endif /* BARE_BONES_SEED */
-