~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to intern/moto/include/MT_random.h

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: MT_random.h 14444 2008-04-16 22:40:48Z hos $
 
2
 * $Id: MT_random.h 15385 2008-06-29 20:53:17Z blendix $
3
3
 * ***** BEGIN GPL LICENSE BLOCK *****
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or
31
31
 
32
32
#include <limits.h>
33
33
 
34
 
#define MT_RAND_MAX ULONG_MAX
 
34
#define MT_RAND_MAX UINT_MAX
35
35
 
36
 
extern void          MT_srand(unsigned long);
37
 
extern unsigned long MT_rand();
 
36
extern void          MT_srand(unsigned int);
 
37
extern unsigned int  MT_rand();
38
38
 
39
39
#endif
40
40